NUL
Null character
Decimal: 0
Hex: 00
Control
ASCII Values
Decimal
0
Hexadecimal
0x00
Character
NUL
Usage Examples
JavaScript (from decimal)
String.fromCharCode(0); // "NUL"
JavaScript (to decimal)
"NUL".charCodeAt(0); // 0
Python
chr(0) # "NUL"
ord("NUL") # 0C/C++
char c = 0; // 'NUL' int code = 'NUL'; // 0
Control Characters
Control characters (0-31, 127) are non-printable characters used for text formatting and device control. Common examples include newline (10), carriage return (13), and tab (9).