DevKits

ASCII 121

Latin Small Letter Y (y)

Printable ASCII

Lowercase letter y.

All encodings at a glance

Decimal121
Hexadecimal0x79
Octal0171
Binary01111001
HTML numeric entityy
URL encoding%79
UTF-8 bytes0x79

Code snippets

JavaScript

String.fromCharCode(121); // "y"
121.toString(16); // "79"

Python

chr(121)           # 'y'
ord(chr(121))      # 121
hex(121)           # '0x79'

HTML

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

Nearby codes