ASCII 80
Latin Capital Letter P (P)
Printable ASCII
Uppercase letter P.
All encodings at a glance
| Decimal | 80 |
| Hexadecimal | 0x50 |
| Octal | 0120 |
| Binary | 01010000 |
| HTML numeric entity | P |
| URL encoding | %50 |
| UTF-8 bytes | 0x50 |
Code snippets
JavaScript
String.fromCharCode(80); // "P"
80.toString(16); // "50"Python
chr(80) # 'P'
ord(chr(80)) # 80
hex(80) # '0x50'HTML
P <!-- numeric entity (no named entity for this character) -->