DevKits

ASCII 122

Latin Small Letter Z (z)

Printable ASCII

Lowercase letter z.

All encodings at a glance

Decimal122
Hexadecimal0x7A
Octal0172
Binary01111010
HTML numeric entityz
URL encoding%7A
UTF-8 bytes0x7A

Code snippets

JavaScript

String.fromCharCode(122); // "z"
122.toString(16); // "7a"

Python

chr(122)           # 'z'
ord(chr(122))      # 122
hex(122)           # '0x7a'

HTML

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

Nearby codes