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