DevKits

ASCII 111

Latin Small Letter O (o)

Printable ASCII

Lowercase letter o.

All encodings at a glance

Decimal111
Hexadecimal0x6F
Octal0157
Binary01101111
HTML numeric entityo
URL encoding%6F
UTF-8 bytes0x6F

Code snippets

JavaScript

String.fromCharCode(111); // "o"
111.toString(16); // "6f"

Python

chr(111)           # 'o'
ord(chr(111))      # 111
hex(111)           # '0x6f'

HTML

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

Nearby codes