DevKits

ASCII 85

Latin Capital Letter U (U)

Printable ASCII

Uppercase letter U.

All encodings at a glance

Decimal85
Hexadecimal0x55
Octal0125
Binary01010101
HTML numeric entityU
URL encoding%55
UTF-8 bytes0x55

Code snippets

JavaScript

String.fromCharCode(85); // "U"
85.toString(16); // "55"

Python

chr(85)           # 'U'
ord(chr(85))      # 85
hex(85)           # '0x55'

HTML

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

Nearby codes