ASCII 76
Latin Capital Letter L (L)
Printable ASCII
Uppercase letter L.
All encodings at a glance
| Decimal | 76 |
| Hexadecimal | 0x4C |
| Octal | 0114 |
| Binary | 01001100 |
| HTML numeric entity | L |
| URL encoding | %4C |
| UTF-8 bytes | 0x4C |
Code snippets
JavaScript
String.fromCharCode(76); // "L"
76.toString(16); // "4c"Python
chr(76) # 'L'
ord(chr(76)) # 76
hex(76) # '0x4c'HTML
L <!-- numeric entity (no named entity for this character) -->