keecode logokeecode

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(" ")  # 32

C/C++

char c = 32;  // ' '
int code = ' ';  // 32