keecode logokeecode
W

Uppercase W

Decimal: 87
Hex: 57
Uppercase

ASCII Values

Decimal

87

Hexadecimal

0x57

Character

W

Usage Examples

JavaScript (from decimal)

String.fromCharCode(87); // "W"

JavaScript (to decimal)

"W".charCodeAt(0); // 87

Python

chr(87)  # "W"
ord("W")  # 87

C/C++

char c = 87;  // 'W'
int code = 'W';  // 87