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") # 53C/C++
char c = 53; // '5' int code = '5'; // 53
Number Characters
Number characters (48-57) represent the decimal digits 0-9. These are essential for numeric data representation.