ASCII 112
Latin Small Letter P (p)
Printable ASCII
Lowercase letter p.
All encodings at a glance
| Decimal | 112 |
| Hexadecimal | 0x70 |
| Octal | 0160 |
| Binary | 01110000 |
| HTML numeric entity | p |
| URL encoding | %70 |
| UTF-8 bytes | 0x70 |
Code snippets
JavaScript
String.fromCharCode(112); // "p"
112.toString(16); // "70"Python
chr(112) # 'p'
ord(chr(112)) # 112
hex(112) # '0x70'HTML
p <!-- numeric entity (no named entity for this character) -->