keecode logokeecode
5

Digit five

Decimal: 53
Hex: 35
Number

ASCII Values

Decimal

53

Hexadecimal

0x35

Character

5

Usage Examples

JavaScript (from decimal)

String.fromCharCode(53); // "5"

JavaScript (to decimal)

"5".charCodeAt(0); // 53

Python

chr(53)  # "5"
ord("5")  # 53

C/C++

char c = 53;  // '5'
int code = '5';  // 53