DevKits

ASCII 117

Latin Small Letter U (u)

Printable ASCII

Lowercase letter u.

All encodings at a glance

Decimal117
Hexadecimal0x75
Octal0165
Binary01110101
HTML numeric entityu
URL encoding%75
UTF-8 bytes0x75

Code snippets

JavaScript

String.fromCharCode(117); // "u"
117.toString(16); // "75"

Python

chr(117)           # 'u'
ord(chr(117))      # 117
hex(117)           # '0x75'

HTML

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

Nearby codes