Toolman

ASCII 99

ASCII 99 is Small letter c, written c.

Every representation

Characterc
NameSmall letter c
Decimal99
Hexadecimal0x63
Octal0143
Binary01100011
HTML entityc
Escape sequence\x63
UnicodeU+0063
GroupLetter

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

Full ASCII table · Text to binary converter · Number base converter