keecode logokeecode
U

Uppercase U

Decimal: 85
Hex: 55
Uppercase

ASCII Values

Decimal

85

Hexadecimal

0x55

Character

U

Usage Examples

JavaScript (from decimal)

String.fromCharCode(85); // "U"

JavaScript (to decimal)

"U".charCodeAt(0); // 85

Python

chr(85)  # "U"
ord("U")  # 85

C/C++

char c = 85;  // 'U'
int code = 'U';  // 85