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
| Decimal | 32 |
| Hexadecimal | 0x20 |
| Octal | 0040 |
| Binary | 00100000 |
| HTML numeric entity |   |
| URL encoding | %20 |
| UTF-8 bytes | 0x20 |
Code snippets
JavaScript
String.fromCharCode(32); // " "
32.toString(16); // "20"Python
chr(32) # ' '
ord(chr(32)) # 32
hex(32) # '0x20'HTML
  <!-- numeric entity (no named entity for this character) -->