ASCII 111
Latin Small Letter O (o)
Printable ASCII
Lowercase letter o.
All encodings at a glance
| Decimal | 111 |
| Hexadecimal | 0x6F |
| Octal | 0157 |
| Binary | 01101111 |
| HTML numeric entity | o |
| URL encoding | %6F |
| UTF-8 bytes | 0x6F |
Code snippets
JavaScript
String.fromCharCode(111); // "o"
111.toString(16); // "6f"Python
chr(111) # 'o'
ord(chr(111)) # 111
hex(111) # '0x6f'HTML
o <!-- numeric entity (no named entity for this character) -->