📋 ASCII Table — Complete ASCII Character Codes

Complete ASCII character table with decimal, hexadecimal, octal, binary values and character symbols. Essential reference for programmers, developers, and students.

ASCII Character Reference

DecHexOctBinaryChar
0000000000000NUL
1010010000001SOH
2020020000010STX
3030030000011ETX
4040040000100EOT
5050050000101ENQ
6060060000110ACK
7070070000111BEL
8080100001000BS
9090110001001HT
100A0120001010LF
110B0130001011VT
120C0140001100FF
130D0150001101CR
140E0160001110SO
150F0170001111SI
16100200010000DLE
17110210010001DC1
18120220010010DC2
19130230010011DC3
20140240010100DC4
21150250010101NAK
22160260010110SYN
23170270010111ETB
24180300011000CAN
25190310011001EM
261A0320011010SUB
271B0330011011ESC
281C0340011100FS
291D0350011101GS
301E0360011110RS
311F0370011111US
32200400100000
33210410100001!
34220420100010"
35230430100011#
36240440100100$
37250450100101%
38260460100110&
39270470100111'
40280500101000(
41290510101001)
422A0520101010*
432B0530101011+
442C0540101100,
452D0550101101-
462E0560101110.
472F0570101111/
483006001100000
493106101100011
503206201100102
513306301100113
523406401101004
533506501101015
543606601101106
553706701101117
563807001110008
573907101110019
583A0720111010:
593B0730111011;
603C0740111100<
613D0750111101=
623E0760111110>
633F0770111111?
64401001000000@
65411011000001A
66421021000010B
67431031000011C
68441041000100D
69451051000101E
70461061000110F
71471071000111G
72481101001000H
73491111001001I
744A1121001010J
754B1131001011K
764C1141001100L
774D1151001101M
784E1161001110N
794F1171001111O
80501201010000P
81511211010001Q
82521221010010R
83531231010011S
84541241010100T
85551251010101U
86561261010110V
87571271010111W
88581301011000X
89591311011001Y
905A1321011010Z
915B1331011011[
925C1341011100\
935D1351011101]
945E1361011110^
955F1371011111_
96601401100000`
97611411100001a
98621421100010b
99631431100011c
100641441100100d
101651451100101e
102661461100110f
103671471100111g
104681501101000h
105691511101001i
1066A1521101010j
1076B1531101011k
1086C1541101100l
1096D1551101101m
1106E1561101110n
1116F1571101111o
112701601110000p
113711611110001q
114721621110010r
115731631110011s
116741641110100t
117751651110101u
118761661110110v
119771671110111w
120781701111000x
121791711111001y
1227A1721111010z
1237B1731111011{
1247C1741111100|
1257D1751111101}
1267E1761111110~
1277F1771111111DEL

Common ASCII Codes Quick Reference

32 = = 0x20
33 = ! = 0x21
34 = " = 0x22
35 = # = 0x23
36 = $ = 0x24
37 = % = 0x25
38 = & = 0x26
39 = ' = 0x27
40 = ( = 0x28
41 = ) = 0x29
42 = * = 0x2A
43 = + = 0x2B
44 = , = 0x2C
45 = - = 0x2D
46 = . = 0x2E
47 = / = 0x2F
48 = 0 = 0x30
57 = 9 = 0x39
65 = A = 0x41
90 = Z = 0x5A
97 = a = 0x61
122 = z = 0x7A
123 = { = 0x7B
124 = | = 0x7C
125 = } = 0x7D
126 = ~ = 0x7E

About ASCII

ASCII (American Standard Code for Information Interchange) is a character encoding standard that uses 7 bits to represent 128 characters (0–127). It includes control characters (0–31), printable characters (32–126), and the delete character (127). ASCII forms the foundation of modern character encoding systems including UTF-8 and Unicode.