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