Bảng ASCII

Complete reference of all 128 ASCII characters with decimal, hex, octal & binary codes.

128 characters shown

About ASCII

ASCII (American Standard Code for Information Interchange) is a 7-bit character encoding standard that defines 128 characters. It was first published in 1963 and is the foundation of most modern character encodings including UTF-8.

Character Ranges

What's the difference between ASCII and Unicode?

ASCII defines 128 characters using 7 bits. Unicode is a superset that covers over 149,000 characters from all writing systems. The first 128 Unicode code points are identical to ASCII.

How do I use these codes in programming?

In JavaScript: String.fromCharCode(65) → "A". In Python: chr(65). In C: (char)65. The hex values work with escape sequences: \x41 = "A".

Related Tools

Binary ↔ Text Number Base Converter HTML Entity Encoder