Toolman

ASCII 101

ASCII 101 is Small letter e, written e.

Every representation

Charactere
NameSmall letter e
Decimal101
Hexadecimal0x65
Octal0145
Binary01100101
HTML entitye
Escape sequence\x65
UnicodeU+0065
GroupLetter

What it is for

The small letter e. Its capital is E at 69, 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 101?

Small letter e, the character e. In hexadecimal it is 0x65, in octal 0145, and in binary 01100101.

How do I type ASCII 101?

Type e directly. In a string literal it can also be written \\x65, and in HTML as e.

Is ASCII 101 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