DevKits

ASCII 80

Latin Capital Letter P (P)

Printable ASCII

Uppercase letter P.

All encodings at a glance

Decimal80
Hexadecimal0x50
Octal0120
Binary01010000
HTML numeric entityP
URL encoding%50
UTF-8 bytes0x50

Code snippets

JavaScript

String.fromCharCode(80); // "P"
80.toString(16); // "50"

Python

chr(80)           # 'P'
ord(chr(80))      # 80
hex(80)           # '0x50'

HTML

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

Nearby codes