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