DevKits

ASCII 79

Latin Capital Letter O (O)

Printable ASCII

Uppercase letter O.

All encodings at a glance

Decimal79
Hexadecimal0x4F
Octal0117
Binary01001111
HTML numeric entityO
URL encoding%4F
UTF-8 bytes0x4F

Code snippets

JavaScript

String.fromCharCode(79); // "O"
79.toString(16); // "4f"

Python

chr(79)           # 'O'
ord(chr(79))      # 79
hex(79)           # '0x4f'

HTML

&#79;   <!-- numeric entity (no named entity for this character) -->

Nearby codes