ASCII 101
ASCII 101 is Small letter e, written e.
Every representation
| Character | e |
| Name | Small letter e |
| Decimal | 101 |
| Hexadecimal | 0x65 |
| Octal | 0145 |
| Binary | 01100101 |
| HTML entity | e |
| Escape sequence | \x65 |
| Unicode | U+0065 |
| Group | Letter |
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
- ASCII 94 — ^
- ASCII 95 — _
- ASCII 96 — `
- ASCII 97 — a
- ASCII 98 — b
- ASCII 99 — c
- ASCII 100 — d
- ASCII 102 — f
- ASCII 103 — g
- ASCII 104 — h
- ASCII 105 — i
- ASCII 106 — j
- ASCII 107 — k
- ASCII 108 — l
Full ASCII table · Text to binary converter · Number base converter