ASCII 67
ASCII 67 is Capital letter C, written C.
Every representation
| Character | C |
| Name | Capital letter C |
| Decimal | 67 |
| Hexadecimal | 0x43 |
| Octal | 0103 |
| Binary | 01000011 |
| HTML entity | C |
| Escape sequence | \x43 |
| Unicode | U+0043 |
| Group | Letter |
What it is for
The capital letter C. 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 67?
Capital letter C, the character C. In hexadecimal it is 0x43, in octal 0103, and in binary 01000011.
How do I type ASCII 67?
Type C directly. In a string literal it can also be written \\x43, and in HTML as C.
Is ASCII 67 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 60 — <
- ASCII 61 — =
- ASCII 62 — >
- ASCII 63 — ?
- ASCII 64 — @
- ASCII 65 — A
- ASCII 66 — B
- ASCII 68 — D
- ASCII 69 — E
- ASCII 70 — F
- ASCII 71 — G
- ASCII 72 — H
- ASCII 73 — I
- ASCII 74 — J
Full ASCII table · Text to binary converter · Number base converter