Complete ASCII character table showing decimal, hexadecimal, binary, and character representations. Essential for programming and computer science.
| Decimal | Hexadecimal | Binary | Character | Description | HTML Entity | 
|---|
ASCII (American Standard Code for Information Interchange) is a character encoding standard for electronic communication. It represents text in computers and other devices that use text.
128
0 - 127
7 bits
ANSI X3.4
Non-printable characters for device control
Visible characters including letters, digits, and punctuation
Additional characters in extended ASCII sets
# Get ASCII value
ord('A')  # Returns 65
# Get character from ASCII
chr(65)   # Returns 'A'
                    // Get ASCII value
'A'.charCodeAt(0)  // Returns 65
// Get character from ASCII
String.fromCharCode(65)  // Returns 'A'
                    // Get ASCII value
(int) 'A'  // Returns 65
// Get character from ASCII
(char) 65  // Returns 'A'
                    // Get ASCII value
int ascii = 'A';  // Returns 65
// Get character from ASCII
char ch = 65;     // Returns 'A'
                    
                        English