keecode logokeecode
w

Lowercase w

Decimal: 119
Hex: 77
Lowercase

ASCII Values

Decimal

119

Hexadecimal

0x77

Character

w

Usage Examples

JavaScript (from decimal)

String.fromCharCode(119); // "w"

JavaScript (to decimal)

"w".charCodeAt(0); // 119

Python

chr(119)  # "w"
ord("w")  # 119

C/C++

char c = 119;  // 'w'
int code = 'w';  // 119