ASCII 79
Latin Capital Letter O (O)
Printable ASCII
Uppercase letter O.
All encodings at a glance
| Decimal | 79 |
| Hexadecimal | 0x4F |
| Octal | 0117 |
| Binary | 01001111 |
| HTML numeric entity | O |
| URL encoding | %4F |
| UTF-8 bytes | 0x4F |
Code snippets
JavaScript
String.fromCharCode(79); // "O"
79.toString(16); // "4f"Python
chr(79) # 'O'
ord(chr(79)) # 79
hex(79) # '0x4f'HTML
O <!-- numeric entity (no named entity for this character) -->