keecode logokeecode
3

Digit three

Decimal: 51
Hex: 33
Number

ASCII Values

Decimal

51

Hexadecimal

0x33

Character

3

Usage Examples

JavaScript (from decimal)

String.fromCharCode(51); // "3"

JavaScript (to decimal)

"3".charCodeAt(0); // 51

Python

chr(51)  # "3"
ord("3")  # 51

C/C++

char c = 51;  // '3'
int code = '3';  // 51