keecode logokeecode
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")  # 0

C/C++

char c = 0;  // 'NUL'
int code = 'NUL';  // 0