ASCII Table

Printable ASCII characters with their decimal and hex codes — searchable.

Popular toolCompress an imageShrink JPG & PNG file sizes without the quality tax.Open
DecHexCharName
320x20 Space
330x21!Exclamation mark
340x22"Double quote
350x23#Number sign / hash
360x24$Dollar sign
370x25%Percent sign
380x26&Ampersand
390x27'Single quote / apostrophe
400x28(Left parenthesis
410x29)Right parenthesis
420x2A*Asterisk
430x2B+Plus sign
440x2C,Comma
450x2D-Hyphen / minus
460x2E.Period / full stop
470x2F/Forward slash
480x300Digit 0
490x311Digit 1
500x322Digit 2
510x333Digit 3
520x344Digit 4
530x355Digit 5
540x366Digit 6
550x377Digit 7
560x388Digit 8
570x399Digit 9
580x3A:Colon
590x3B;Semicolon
600x3C<Less-than sign
610x3D=Equals sign
620x3E>Greater-than sign
630x3F?Question mark
640x40@At sign
650x41AUppercase A
660x42BUppercase B
670x43CUppercase C
680x44DUppercase D
690x45EUppercase E
700x46FUppercase F
710x47GUppercase G
720x48HUppercase H
730x49IUppercase I
740x4AJUppercase J
750x4BKUppercase K
760x4CLUppercase L
770x4DMUppercase M
780x4ENUppercase N
790x4FOUppercase O
800x50PUppercase P
810x51QUppercase Q
820x52RUppercase R
830x53SUppercase S
840x54TUppercase T
850x55UUppercase U
860x56VUppercase V
870x57WUppercase W
880x58XUppercase X
890x59YUppercase Y
900x5AZUppercase Z
910x5B[Left square bracket
920x5C\Backslash
930x5D]Right square bracket
940x5E^Caret / circumflex
950x5F_Underscore
960x60`Grave accent / backtick
970x61aLowercase a
980x62bLowercase b
990x63cLowercase c
1000x64dLowercase d
1010x65eLowercase e
1020x66fLowercase f
1030x67gLowercase g
1040x68hLowercase h
1050x69iLowercase i
1060x6AjLowercase j
1070x6BkLowercase k
1080x6ClLowercase l
1090x6DmLowercase m
1100x6EnLowercase n
1110x6FoLowercase o
1120x70pLowercase p
1130x71qLowercase q
1140x72rLowercase r
1150x73sLowercase s
1160x74tLowercase t
1170x75uLowercase u
1180x76vLowercase v
1190x77wLowercase w
1200x78xLowercase x
1210x79yLowercase y
1220x7AzLowercase z
1230x7B{Left curly brace
1240x7C|Vertical bar / pipe
1250x7D}Right curly brace
1260x7E~Tilde

How to read the ASCII table

Each printable character maps to a decimal value (32–126) and its hexadecimal equivalent. Type a character, a name like ‘ampersand’, or a number like ‘65’ to filter. ‘A’ is 65, ‘a’ is 97, and space is 32.

Questions

What is the ASCII code for the letter A?
Uppercase A is decimal 65, or 0x41 in hexadecimal. Lowercase a is decimal 97 (0x61) — exactly 32 higher than its uppercase counterpart.
Why does this table start at 32?
Codes 0–31 are non-printable control characters (like tab and newline) that have no visible glyph. The printable, on-screen characters run from 32 (space) through 126 (tilde).