DevKits

ASCII 90

Latin Capital Letter Z (Z)

Printable ASCII

Uppercase letter Z.

All encodings at a glance

Decimal90
Hexadecimal0x5A
Octal0132
Binary01011010
HTML numeric entityZ
URL encoding%5A
UTF-8 bytes0x5A

Code snippets

JavaScript

String.fromCharCode(90); // "Z"
90.toString(16); // "5a"

Python

chr(90)           # 'Z'
ord(chr(90))      # 90
hex(90)           # '0x5a'

HTML

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

Nearby codes