ToolBark
Developer

ASCII Table Reference

Every ASCII character 0–127 with dec, hex, octal, binary and description — instantly searchable.

128 of 128 rows
DecHexCharDescriptionCopy
00x00·NUL — Null
10x01·SOH — Start of Heading
20x02·STX — Start of Text
30x03·ETX — End of Text
40x04·EOT — End of Transmission
50x05·ENQ — Enquiry
60x06·ACK — Acknowledge
70x07·BEL — Bell
80x08·BS — Backspace
90x09·HT — Horizontal Tab
100x0A·LF — Line Feed
110x0B·VT — Vertical Tab
120x0C·FF — Form Feed
130x0D·CR — Carriage Return
140x0E·SO — Shift Out
150x0F·SI — Shift In
160x10·DLE — Data Link Escape
170x11·DC1 — Device Control 1 (XON)
180x12·DC2 — Device Control 2
190x13·DC3 — Device Control 3 (XOFF)
200x14·DC4 — Device Control 4
210x15·NAK — Negative Acknowledge
220x16·SYN — Synchronous Idle
230x17·ETB — End of Transmission Block
240x18·CAN — Cancel
250x19·EM — End of Medium
260x1A·SUB — Substitute
270x1B·ESC — Escape
280x1C·FS — File Separator
290x1D·GS — Group Separator
300x1E·RS — Record Separator
310x1F·US — Unit Separator
320x20SPSP — Space
330x21!! — Exclamation Mark
340x22"" — Double Quote
350x23## — Hash / Number Sign
360x24$$ — Dollar Sign
370x25%% — Percent Sign
380x26&& — Ampersand
390x27'' — Single Quote
400x28(( — Left Parenthesis
410x29)) — Right Parenthesis
420x2A** — Asterisk
430x2B++ — Plus Sign
440x2C,, — Comma
450x2D-- — Hyphen / Minus
460x2E.. — Period / Full Stop
470x2F// — Forward Slash
480x3000 — Digit Zero
490x3111 — Digit One
500x3222 — Digit Two
510x3333 — Digit Three
520x3444 — Digit Four
530x3555 — Digit Five
540x3666 — Digit Six
550x3777 — Digit Seven
560x3888 — Digit Eight
570x3999 — Digit Nine
580x3A:: — Colon
590x3B;; — Semicolon
600x3C<< — Less-Than Sign
610x3D== — Equals Sign
620x3E>> — Greater-Than Sign
630x3F?? — Question Mark
640x40@@ — At Sign
650x41AA — Latin Capital A
660x42BB — Latin Capital B
670x43CC — Latin Capital C
680x44DD — Latin Capital D
690x45EE — Latin Capital E
700x46FF — Latin Capital F
710x47GG — Latin Capital G
720x48HH — Latin Capital H
730x49II — Latin Capital I
740x4AJJ — Latin Capital J
750x4BKK — Latin Capital K
760x4CLL — Latin Capital L
770x4DMM — Latin Capital M
780x4ENN — Latin Capital N
790x4FOO — Latin Capital O
800x50PP — Latin Capital P
810x51QQ — Latin Capital Q
820x52RR — Latin Capital R
830x53SS — Latin Capital S
840x54TT — Latin Capital T
850x55UU — Latin Capital U
860x56VV — Latin Capital V
870x57WW — Latin Capital W
880x58XX — Latin Capital X
890x59YY — Latin Capital Y
900x5AZZ — Latin Capital Z
910x5B[[ — Left Square Bracket
920x5C\\ — Backslash
930x5D]] — Right Square Bracket
940x5E^^ — Caret
950x5F__ — Underscore
960x60`` — Grave Accent
970x61aa — Latin Small a
980x62bb — Latin Small b
990x63cc — Latin Small c
1000x64dd — Latin Small d
1010x65ee — Latin Small e
1020x66ff — Latin Small f
1030x67gg — Latin Small g
1040x68hh — Latin Small h
1050x69ii — Latin Small i
1060x6Ajj — Latin Small j
1070x6Bkk — Latin Small k
1080x6Cll — Latin Small l
1090x6Dmm — Latin Small m
1100x6Enn — Latin Small n
1110x6Foo — Latin Small o
1120x70pp — Latin Small p
1130x71qq — Latin Small q
1140x72rr — Latin Small r
1150x73ss — Latin Small s
1160x74tt — Latin Small t
1170x75uu — Latin Small u
1180x76vv — Latin Small v
1190x77ww — Latin Small w
1200x78xx — Latin Small x
1210x79yy — Latin Small y
1220x7Azz — Latin Small z
1230x7B{{ — Left Curly Brace
1240x7C|| — Vertical Bar / Pipe
1250x7D}} — Right Curly Brace
1260x7E~~ — Tilde
1270x7FDELDEL — Delete

Quick Jump

About

The ASCII Table Reference lists all 128 ASCII characters (codes 0–127) alongside their decimal, hexadecimal, octal, binary and Unicode representations. Whether you need to decode a control character, look up the hex value of a symbol, or check the binary code for a letter, this searchable ASCII chart gives you instant answers — no manuals required.

FAQ
What is ASCII and why does it only go to 127?+

ASCII (American Standard Code for Information Interchange) uses 7 bits to encode 128 characters (0–127). The first 32 codes plus 127 are non-printable control characters; codes 32–126 cover the familiar printable symbols including letters, digits and punctuation. Extended encodings like Latin-1 and UTF-8 build on top of this 7-bit foundation.

How do I search for a specific character or code?+

Type any of the following into the search box: a decimal number (e.g. 65), a hex value with or without the 0x prefix (e.g. 0x41 or 41), an octal number (e.g. 101), the character itself (e.g. A), or a keyword from the description (e.g. carriage return). The table filters live as you type.

What are ASCII control characters?+

Control characters are the first 32 ASCII codes (0–31) plus DEL (127). They do not represent printable glyphs; instead they signal actions like Line Feed (LF, 10), Carriage Return (CR, 13), Tab (HT, 9), Escape (ESC, 27), and Null (NUL, 0). They are widely used in terminal emulation, serial communication, and file formats.

How do I use this table for HTML special characters?+

Click any row to open the Character Detail panel, which shows the HTML entity for that code (e.g. &#65; for 'A' or &#x1F; for a hex entity). You can also copy any row or the entire filtered table as plain text using the copy buttons.

Related tools