For example, 01000001, or decimal equivalent of 65 and hexadecimal equivalent of 41, is the alphabet "A". Note that upper cases and lower cases have distinct representations that differ by 32 decimal or 20 hexadecimal. To enter a character that your PC keyboard does not have, you enter the ASCII number with the number keys in the number key pad section (not the numbers at the top of the keyboard) while pressing down the "ALT" key, When you release the ALT key, the character is entered. For example, ALT-65 gives you an "A". Another example: blank space is ASCII 32 decimal or ASCII 20 hexadecimal; thus, a blank space in a URL is represented as "%20", e.g., "www.nogood.edu/nobody/%20/abc."
There are a number of tricks with nonstandard characters. For example, you can create files named with graphical characters. You can create a file with ASCII 255 -- another blank character that does not show up but differs completely from the blank space character of ASCII 32.
------------------------------------------------- CTRL Key Meaning ------------------------------------------------- CTRL-C kill a program CTRL-D eof (end-of-file) character in UNIX CTRL-G bell CTRL-H backspace CTRL-I horizontal tab CTRL-J line feed CTRL-K vertical tab CTRL-L form feed (page eject) CTRL-M carriage return (enter key) CTRL-P toggle display echo to printer CTRL-Q restart a suspended program CTRL-S suspend a program CTRL-Z eof (end-of-file) character in DOS -------------------------------------------------
Unfortunately, mainly because of politics, there are several Chinese coding systems. The most common ones are GuoBiao (GB), which is commonly used in mainland China and Singapore; Big5, which is popular in Taiwan and Hong Kong; and the Unicode. GB contains about 6500 Chinese characters, where the first and second bytes are both coded from Hex A1 to Hex FE. On the other hand, Big5 contains about 13000 characters, where the first byte is coded from Hex A1 to FE adn the second byte from Hex 40 to 7F or Hex A1 to FE. Note the 127 standard ASCII alphabets are intermeshed with GB and Big5. Furthermore, to make the matter worse, many languages, including Japanese and Korean use a subset or a variant of the Chinese characeters (kanji). Each of these languages, in turn, has several encoding systems. Some people speculate that Unicode, which is adopted in MS IE5, will eventually become the standard, and we we no longer need to worry about the encoding scheme. In the means time, see how to configure your Windows to read Chinese/Japanese/Korean.
Computer Nature
------------------------------------------------------------
# Possible States 2 (0 & 1) 4 (A, T, C G)
# of Characters 26+ alphabets 20 amino acids
# of Binary Digits Needed 8 3
|