DevKits

ASCII 32

Space (SP)

Printable ASCII

Space character. The most common character in most texts. In URLs it must be percent-encoded (%20) or written as +.

All encodings at a glance

Decimal32
Hexadecimal0x20
Octal0040
Binary00100000
HTML numeric entity 
URL encoding%20
UTF-8 bytes0x20

Code snippets

JavaScript

String.fromCharCode(32); // " "
32.toString(16); // "20"

Python

chr(32)           # ' '
ord(chr(32))      # 32
hex(32)           # '0x20'

HTML

&#32;   <!-- numeric entity (no named entity for this character) -->

Nearby codes