Extended ASCII Table

Reference the Full Extended ASCII Character Set

Need to use Extended ASCII Table right now?

The extended ASCII set adds 128 more characters beyond standard ASCII — box-drawing symbols, accented letters, and other characters used by specific legacy systems and encodings. This tool provides a complete, searchable reference for the full 256-character set.

No sign-upNo uploads 100% free
NUL0 · 0x00
ctrl1 · 0x01
ctrl2 · 0x02
ctrl3 · 0x03
ctrl4 · 0x04
ctrl5 · 0x05
ctrl6 · 0x06
ctrl7 · 0x07
ctrl8 · 0x08
TAB9 · 0x09
LF10 · 0x0A
ctrl11 · 0x0B
ctrl12 · 0x0C
CR13 · 0x0D
ctrl14 · 0x0E
ctrl15 · 0x0F
ctrl16 · 0x10
ctrl17 · 0x11
ctrl18 · 0x12
ctrl19 · 0x13
ctrl20 · 0x14
ctrl21 · 0x15
ctrl22 · 0x16
ctrl23 · 0x17
ctrl24 · 0x18
ctrl25 · 0x19
ctrl26 · 0x1A
ESC27 · 0x1B
ctrl28 · 0x1C
ctrl29 · 0x1D
ctrl30 · 0x1E
ctrl31 · 0x1F
SPACE32 · 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
048 · 0x30
149 · 0x31
250 · 0x32
351 · 0x33
452 · 0x34
553 · 0x35
654 · 0x36
755 · 0x37
856 · 0x38
957 · 0x39
:58 · 0x3A
;59 · 0x3B
<60 · 0x3C
=61 · 0x3D
>62 · 0x3E
?63 · 0x3F
@64 · 0x40
A65 · 0x41
B66 · 0x42
C67 · 0x43
D68 · 0x44
E69 · 0x45
F70 · 0x46
G71 · 0x47
H72 · 0x48
I73 · 0x49
J74 · 0x4A
K75 · 0x4B
L76 · 0x4C
M77 · 0x4D
N78 · 0x4E
O79 · 0x4F
P80 · 0x50
Q81 · 0x51
R82 · 0x52
S83 · 0x53
T84 · 0x54
U85 · 0x55
V86 · 0x56
W87 · 0x57
X88 · 0x58
Y89 · 0x59
Z90 · 0x5A
[91 · 0x5B
\92 · 0x5C
]93 · 0x5D
^94 · 0x5E
_95 · 0x5F
`96 · 0x60
a97 · 0x61
b98 · 0x62
c99 · 0x63
d100 · 0x64
e101 · 0x65
f102 · 0x66
g103 · 0x67
h104 · 0x68
i105 · 0x69
j106 · 0x6A
k107 · 0x6B
l108 · 0x6C
m109 · 0x6D
n110 · 0x6E
o111 · 0x6F
p112 · 0x70
q113 · 0x71
r114 · 0x72
s115 · 0x73
t116 · 0x74
u117 · 0x75
v118 · 0x76
w119 · 0x77
x120 · 0x78
y121 · 0x79
z122 · 0x7A
{123 · 0x7B
|124 · 0x7C
}125 · 0x7D
~126 · 0x7E
127 · 0x7F

Features

  • Runs entirely in your browser
  • Privacy-first — your data is never uploaded
  • Real-time, instant results
  • 100% free, no sign-up required
  • Works on desktop, tablet, and mobile
  • No installation needed

Who uses this tool?

Software engineersWeb developersAPI testersDevOps engineersStudents

About Extended ASCII Table

ASCII (American Standard Code for Information Interchange) is the foundational character encoding that assigns a specific number, from 0 to 127, to every basic English letter, digit, punctuation mark, and a handful of special control characters. Established in the 1960s, it predates Unicode by decades and remains the common foundation nearly every modern text encoding (including UTF-8) is built to be backward-compatible with — the first 128 characters of UTF-8 are identical to ASCII, which is exactly why plain English text looks the same whether it's interpreted as ASCII or as UTF-8.

This reference table lists all 128 standard ASCII characters alongside their decimal and hexadecimal values, which is useful for a range of genuinely practical tasks: looking up the exact numeric code for a character needed in a low-level programming context, understanding what an unfamiliar control character code means when it shows up in a byte-level file inspection, converting between decimal and hexadecimal representations of a character for a specific protocol or file format, or just satisfying curiosity about a system that shows raw character codes.

The first 32 codes (0-31), plus code 127, are control characters rather than printable symbols — historically used for controlling teletype and early computer terminal hardware (like carriage return, line feed, tab, and escape) rather than representing visible text. Codes 32 through 126 are the printable characters most people think of as "ASCII": the space character, digits 0-9, uppercase and lowercase letters, and standard punctuation.

Use the search box to quickly find a specific character, decimal value, or hex value rather than scrolling through the full table — searching "65" finds the letter A, searching "a" finds both uppercase and lowercase entries containing that letter, and searching a hex value like "41" finds the same entry by its hexadecimal code.

How it works

  1. Search or scroll. Look up a character, decimal code, or hex code directly, or scroll the full table.
  2. Read the values. Each entry shows the character alongside its decimal and hexadecimal code.

Examples

Looking up the letter A

Input

A

Output

A · 65 · 0x41

Frequently asked questions