x
Lowercase x
Decimal: 120
Hex: 78
Lowercase
ASCII Values
Decimal
120
Hexadecimal
0x78
Character
x
Usage Examples
JavaScript (from decimal)
String.fromCharCode(120); // "x"
JavaScript (to decimal)
"x".charCodeAt(0); // 120
Python
chr(120) # "x"
ord("x") # 120C/C++
char c = 120; // 'x' int code = 'x'; // 120
Lowercase Characters
Lowercase letters (97-122) represent small letters a-z. To convert between cases, add or subtract 32 from the ASCII value.