DevKits

ASCII 104

Latin Small Letter H (h)

Printable ASCII

Lowercase letter h.

All encodings at a glance

Decimal104
Hexadecimal0x68
Octal0150
Binary01101000
HTML numeric entityh
URL encoding%68
UTF-8 bytes0x68

Code snippets

JavaScript

String.fromCharCode(104); // "h"
104.toString(16); // "68"

Python

chr(104)           # 'h'
ord(chr(104))      # 104
hex(104)           # '0x68'

HTML

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

Nearby codes