ASCII 76
ASCII 76 is Capital letter L, written L.
Every representation
| Character | L |
| Name | Capital letter L |
| Decimal | 76 |
| Hexadecimal | 0x4C |
| Octal | 0114 |
| Binary | 01001100 |
| HTML entity | L |
| Escape sequence | \x4C |
| Unicode | U+004C |
| Group | Letter |
What it is for
The capital letter L. 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 76?
Capital letter L, the character L. In hexadecimal it is 0x4C, in octal 0114, and in binary 01001100.
How do I type ASCII 76?
Type L directly. In a string literal it can also be written \\x4C, and in HTML as L.
Is ASCII 76 printable?
Yes. Codes 32 to 126 are the printable range, which is every character ASCII can actually display.
Nearby codes
- ASCII 69 — E
- ASCII 70 — F
- ASCII 71 — G
- ASCII 72 — H
- ASCII 73 — I
- ASCII 74 — J
- ASCII 75 — K
- ASCII 77 — M
- ASCII 78 — N
- ASCII 79 — O
- ASCII 80 — P
- ASCII 81 — Q
- ASCII 82 — R
- ASCII 83 — S
Full ASCII table · Text to binary converter · Number base converter