DevKits

ASCII 72

Latin Capital Letter H (H)

Printable ASCII

Uppercase letter H.

All encodings at a glance

Decimal72
Hexadecimal0x48
Octal0110
Binary01001000
HTML numeric entityH
URL encoding%48
UTF-8 bytes0x48

Code snippets

JavaScript

String.fromCharCode(72); // "H"
72.toString(16); // "48"

Python

chr(72)           # 'H'
ord(chr(72))      # 72
hex(72)           # '0x48'

HTML

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

Nearby codes