📝 Text → ASCII Codes

ASCII codes will appear here...

🔢 ASCII Codes → Text

Decoded text will appear here...

Quick Character Lookup

Enter a value in any field to see all conversions

A

Uppercase A

Letter • Printable

Decimal
65
Hex
0x41
Binary
01000001
Octal
101
HTML Entity
A
C Escape
\x41
Showing: 128 / 128
Click any row for details
Dec Hex Binary Char Description Type
Copied!

About ASCII

ASCII (American Standard Code for Information Interchange) is a character encoding standard that uses 7 bits to represent 128 characters: 33 control characters (0-31 and 127) and 95 printable characters (32-126).

The printable characters include digits 0-9 (codes 48-57), uppercase letters A-Z (65-90), lowercase letters a-z (97-122), and various punctuation and symbols.

Common Uses in Programming

0x00 (NUL) — String terminator in C

0x0A (LF) — Unix/Linux line ending

0x0D (CR) — Part of Windows line ending (CRLF)

0x09 (TAB) — Horizontal tab character

0x1B (ESC) — ANSI escape sequences

0x20 (Space) — First printable character

0x7F (DEL) — Delete character

A-Z / a-z differ by 32 — Case conversion trick