ASCII 99
ASCII 99 is Small letter c, written c.
Every representation
| Character | c |
| Name | Small letter c |
| Decimal | 99 |
| Hexadecimal | 0x63 |
| Octal | 0143 |
| Binary | 01100011 |
| HTML entity | c |
| Escape sequence | \x63 |
| Unicode | U+0063 |
| Group | Letter |
What it is for
The small letter c. Its capital is C at 67, exactly 32 lower — the difference is bit 5, which is why case conversion is a bitwise operation.
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 99?
Small letter c, the character c. In hexadecimal it is 0x63, in octal 0143, and in binary 01100011.
How do I type ASCII 99?
Type c directly. In a string literal it can also be written \\x63, and in HTML as c.
Is ASCII 99 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 92 — \
- ASCII 93 — ]
- ASCII 94 — ^
- ASCII 95 — _
- ASCII 96 — `
- ASCII 97 — a
- ASCII 98 — b
- ASCII 100 — d
- ASCII 101 — e
- ASCII 102 — f
- ASCII 103 — g
- ASCII 104 — h
- ASCII 105 — i
- ASCII 106 — j
Full ASCII table · Text to binary converter · Number base converter