Space
Decimal: 32
Hex: 20
Control
ASCII Values
Decimal
32
Hexadecimal
0x20
Character
Usage Examples
JavaScript (from decimal)
String.fromCharCode(32); // " "
JavaScript (to decimal)
" ".charCodeAt(0); // 32
Python
chr(32) # " "
ord(" ") # 32C/C++
char c = 32; // ' ' int code = ' '; // 32
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).