keecode logokeecode
1

Digit one

Decimal: 49
Hex: 31
Number

ASCII Values

Decimal

49

Hexadecimal

0x31

Character

1

Usage Examples

JavaScript (from decimal)

String.fromCharCode(49); // "1"

JavaScript (to decimal)

"1".charCodeAt(0); // 49

Python

chr(49)  # "1"
ord("1")  # 49

C/C++

char c = 49;  // '1'
int code = '1';  // 49