ASCII 88
ASCII 88 is Capital letter X, written X.
Every representation
| Character | X |
| Name | Capital letter X |
| Decimal | 88 |
| Hexadecimal | 0x58 |
| Octal | 0130 |
| Binary | 01011000 |
| HTML entity | X |
| Escape sequence | \x58 |
| Unicode | U+0058 |
| Group | Letter |
What it is for
The capital letter X. Capitals run from 65 to 90 and their lowercase counterparts from 97 to 122, exactly 32 apart, so changing case is a single bit flip.
Where the number comes from
The alphabet was placed so that capitals start at 65 and lowercase at 97 — exactly 32 apart, a single bit. Changing case is therefore c ^ 32, and this was a deliberate design decision rather than a coincidence.
Frequently asked questions
What is ASCII 88?
Capital letter X, the character X. In hexadecimal it is 0x58, in octal 0130, and in binary 01011000.
How do I type ASCII 88?
Type X directly. In a string literal it can also be written \\x58, and in HTML as X.
Is ASCII 88 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 81 — Q
- ASCII 82 — R
- ASCII 83 — S
- ASCII 84 — T
- ASCII 85 — U
- ASCII 86 — V
- ASCII 87 — W
- ASCII 89 — Y
- ASCII 90 — Z
- ASCII 91 — [
- ASCII 92 — \
- ASCII 93 — ]
- ASCII 94 — ^
- ASCII 95 — _
Full ASCII table · Text to binary converter · Number base converter