DevKits

ASCII 89

Latin Capital Letter Y (Y)

Printable ASCII

Uppercase letter Y.

All encodings at a glance

Decimal89
Hexadecimal0x59
Octal0131
Binary01011001
HTML numeric entityY
URL encoding%59
UTF-8 bytes0x59

Code snippets

JavaScript

String.fromCharCode(89); // "Y"
89.toString(16); // "59"

Python

chr(89)           # 'Y'
ord(chr(89))      # 89
hex(89)           # '0x59'

HTML

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

Nearby codes