ASCII Code Chart


The ASCII code scheme was originally developed to get round IBM’s copyright on the EBCDIC scheme. It is now virtually universal, even on IBM computers.
 

    00   10   20   30   40   50   60   70 
0 NUL DLE SP 0 @ P ` p
1 SOH DC1 ! 1 A Q a q
2 STX DC2 " 2 B R b r
3 ETX DC3 # 3 C S c s
4 EOT DC4 $ 4 D T d t
5 ENQ NAK % 5 E U e u
6 ACK SYN & 6 F V f v
7 BEL ETB ' 7 G W g w
8 BS CAN ( 8 H X h x
9 HT EM ) 9 I Y i y
A LF SUB * : J Z j z
B VT ESC + ; K [ k {
C FF FS , < L \ l |
D CR GS - = M ] m }
E SO RS . > N ^ n ~
F SI US / ? O _ o DEL

 

Notes:

  1. The table gives hexadecimal values for the codes, increasing down the columns. So, for example, the code for a capital ‘J’ is 4A16.
  2. Codes less than 2016 (the ASCII code for a space) are non-printing control characters, represented here by 2- or 3-letter abbreviations.
  3. 2D16 is the minus symbol or hyphen, ‘-’. 5F16 is the underscore character, ‘_’.
  4. Codes greater than 7F16 are unused in the ASCII scheme.

 
 
Home