keecode logokeecode
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")  # 120

C/C++

char c = 120;  // 'x'
int code = 'x';  // 120