8
Digit eight
Decimal: 56
Hex: 38
Number
ASCII Values
Decimal
56
Hexadecimal
0x38
Character
8
Usage Examples
JavaScript (from decimal)
String.fromCharCode(56); // "8"
JavaScript (to decimal)
"8".charCodeAt(0); // 56
Python
chr(56) # "8"
ord("8") # 56C/C++
char c = 56; // '8' int code = '8'; // 56
Number Characters
Number characters (48-57) represent the decimal digits 0-9. These are essential for numeric data representation.