keecode logokeecode
R

Uppercase R

Decimal: 82
Hex: 52
Uppercase

ASCII Values

Decimal

82

Hexadecimal

0x52

Character

R

Usage Examples

JavaScript (from decimal)

String.fromCharCode(82); // "R"

JavaScript (to decimal)

"R".charCodeAt(0); // 82

Python

chr(82)  # "R"
ord("R")  # 82

C/C++

char c = 82;  // 'R'
int code = 'R';  // 82