keecode logokeecode
y

Lowercase y

Decimal: 121
Hex: 79
Lowercase

ASCII Values

Decimal

121

Hexadecimal

0x79

Character

y

Usage Examples

JavaScript (from decimal)

String.fromCharCode(121); // "y"

JavaScript (to decimal)

"y".charCodeAt(0); // 121

Python

chr(121)  # "y"
ord("y")  # 121

C/C++

char c = 121;  // 'y'
int code = 'y';  // 121