ASCII Code 88 · Unicode U+0058 · Hex 0x58
ASCII code 88 (0x58) represents the Uppercase X character "X". The uppercase letter "X" has ASCII code 88. Uppercase letters A–Z span codes 65–90. The relationship between uppercase and lowercase ASCII letters is consistent: adding 32 to an uppercase letter’s code gives the corresponding lowercase letter (e.g., 'A' at 65 + 32 = 'a' at 97). The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.
| ASCII Code | 88 |
| Hexadecimal | 0x58 |
| Octal | 130 |
| Binary | 01011000 |
| Unicode | U+0058 |
| Unicode Name | LATIN CAPITAL LETTER X |
| HTML Numeric | X |
| HTML Entity | — |
| URL Escape | %58 |
| UTF-8 (Hex) | 58 |
| Quoted-Printable | X |
// Character literal
let char = 'X';
// Using char code
let char2 = String.fromCharCode(88);
// Unicode escape
let char3 = '\x58'; # Character literal
char = 'X'
# Using chr()
char = chr(88)
# Using ord() to get code
code = ord('X') # Returns 88 <!-- Direct character -->
X
<!-- HTML entity (numeric) -->
X
<!-- Hex entity -->
X // Character literal
char c = 'X';
// Using cast
char c2 = (char)88;
// To get code from char
int code = (int)'X'; // Returns 88