ASCII 108
Latin Small Letter L (l)
Printable ASCII
Lowercase letter l.
All encodings at a glance
| Decimal | 108 |
| Hexadecimal | 0x6C |
| Octal | 0154 |
| Binary | 01101100 |
| HTML numeric entity | l |
| URL encoding | %6C |
| UTF-8 bytes | 0x6C |
Code snippets
JavaScript
String.fromCharCode(108); // "l"
108.toString(16); // "6c"Python
chr(108) # 'l'
ord(chr(108)) # 108
hex(108) # '0x6c'HTML
l <!-- numeric entity (no named entity for this character) -->