ASCII 32 — Space
The printable character " " at ASCII code 32.
All Representations
320x200o04000100000 Character Details
| Character | |
| Name | Space |
| Decimal | 32 |
| Hexadecimal | 0x20 |
| Octal | 0o040 |
| Binary | 00100000 |
| HTML Entity |   |
| Category | Whitespace |
| Printable | Yes |
About ASCII 32 (Space)
The Space character is the most frequently typed character in English text and the fundamental word separator in virtually all languages using the Latin alphabet. Space sits at the boundary between non-printable control characters (0–31) and the visible printable characters (33–126). In HTML, multiple consecutive spaces collapse into a single space — a behavior that drives developers to use non-breaking spaces when whitespace must be preserved. URL encoding converts spaces to '+' or '%20', and the varying whitespace handling rules across languages make Space a surprisingly complex character.
Whitespace characters create visual separation and structural formatting in text without rendering a visible glyph. Whitespace handling is a critical design consideration across programming languages, markup systems, and data formats: Python uses indentation for block structure, HTML collapses consecutive spaces into one, and tools like linters flag inconsistent whitespace patterns. The interplay between spaces, tabs, line feeds, and other whitespace characters has produced some of the longest-running formatting debates in the entire history of software development.
In the ASCII encoding table, Space is assigned code point 32 in decimal (0x20 hexadecimal, 040 octal, 00100000 binary). The 7-bit ASCII standard, first published in 1963 by the American Standards Association, defines exactly 128 characters that remain the foundation of text encoding systems worldwide. UTF-8, the dominant encoding on the modern web, is fully backward compatible with ASCII — every ASCII character is encoded as the identical single byte in UTF-8, guaranteeing that Space works reliably across all operating systems, programming languages, and internet protocols.
Related ASCII Characters
Nearby ASCII Codes
Explore the Full ASCII Table
Browse all 128 ASCII characters with codes, representations, and detailed references.