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