ASCII Table

ASCII character table with decimal, hex and descriptions

Control Characters (0-31)

0 NUL # null character
9 TAB # horizontal tab
10 LF # line feed (newline)
13 CR # carriage return
27 ESC # escape
32 SPACE # space character

Symbols (33-47)

33 ! # exclamation mark
34 quote # double quote
35 # # hash
36 $ # dollar sign
37 % # percent
38 & # ampersand
40 ( # left parenthesis
47 / # forward slash

Numbers (48-57)

48 0 # digit zero
49 1 # digit one
50 2 # digit two
51 3 # digit three
52 4 # digit four
53 5 # digit five
54 6 # digit six
55 7 # digit seven
56 8 # digit eight
57 9 # digit nine

Uppercase (65-90)

65 A # uppercase A
66 B # uppercase B
67 C # uppercase C
...through...
88 X # uppercase X
89 Y # uppercase Y
90 Z # uppercase Z

Lowercase (97-122)

97 a # lowercase a
98 b # lowercase b
99 c # lowercase c
...through...
120 x # lowercase x
121 y # lowercase y
122 z # lowercase z