Ascii Code
Ascii Code
ASCII Code
Column Number
000 001 010 011 100 101 110 111
Row Number
0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111 NUL SOH STX ETX EOT ENQ ACK BELL BS HT LF VT FF CR SO SI DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM SUB ESC FS GS RS US
0 1 2 3 4 5 6 7 8 9
@ A B C D E F G H I J K L M N O
P Q R S T U V W X Y Z [ \ ]
`
a b c d e f g h i j k l m n o
p q r s t u v w x y z {
"
# $ % & ' ( )
* +
,
:
;
.
/
< = >
?
|
}
^ _
~
DEL
The ASCII code of a character is found by combining its Column Number (given in 3-bit binary) with its Row Number (given in 4-bit binary). The Column Number forms bits 6, 5 and 4 of the ASCII, and the Row Number forms bits 3, 2, 1 and 0 of the ASCII. Example of use: to get ASCII code for letter "n", locate it in Column 110, Row 1110. Hence its ASCII code is 1101110. The Control Code mnemonics are given in italics above; e.g. CR for Carriage Return, LF for Line Feed, BELL for the Bell, DEL for Delete. The Space is ASCII 0100000, and is shown as here.