DevKits

ASCII 112

Latin Small Letter P (p)

Printable ASCII

Lowercase letter p.

All encodings at a glance

Decimal112
Hexadecimal0x70
Octal0160
Binary01110000
HTML numeric entityp
URL encoding%70
UTF-8 bytes0x70

Code snippets

JavaScript

String.fromCharCode(112); // "p"
112.toString(16); // "70"

Python

chr(112)           # 'p'
ord(chr(112))      # 112
hex(112)           # '0x70'

HTML

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

Nearby codes