ASCII Code PDF
ASCII Code PDF
ASCII Code
Column Number
000 001 010 011 100 101 110 111
Row
Number
0000 NUL DLE ◊ 0 @ P ` p
0001 SOH DC1 ! 1 A Q a q
0010 STX DC2 " 2 B R b r
0011 ETX DC3 # 3 C S c s
0100 EOT DC4 $ 4 D T d t
0101 ENQ NAK % 5 E U e u
0110 ACK SYN & 6 F V f v
0111 BELL ETB ' 7 G W g w
1000 BS CAN ( 8 H X h x
1001 HT EM ) 9 I Y i y
1010 LF SUB * : J Z j z
1011 VT ESC + ; K [ k {
1100 FF FS , < L \ l |
1101 CR GS - = M ] m }
1110 SO RS . > N ^ n ~
1111 SI US / ? O _ o 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.