keecode logokeecode
S

Uppercase S

Decimal: 83
Hex: 53
Uppercase

ASCII Values

Decimal

83

Hexadecimal

0x53

Character

S

Usage Examples

JavaScript (from decimal)

String.fromCharCode(83); // "S"

JavaScript (to decimal)

"S".charCodeAt(0); // 83

Python

chr(83)  # "S"
ord("S")  # 83

C/C++

char c = 83;  // 'S'
int code = 'S';  // 83