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") # 121C/C++
char c = 121; // 'y' int code = 'y'; // 121
Lowercase Characters
Lowercase letters (97-122) represent small letters a-z. To convert between cases, add or subtract 32 from the ASCII value.