WhitespacePrintableDec 32

ASCII 32 Space

The printable character " " at ASCII code 32.

All Representations

Decimal
32
Hexadecimal
0x20
Octal
0o040
Binary
00100000
HTML Entity
 

Character Details

Character
NameSpace
Decimal32
Hexadecimal0x20
Octal0o040
Binary00100000
HTML Entity 
CategoryWhitespace
PrintableYes

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

DecHexOctBinCharName
270x1B0o03300011011ESC
280x1C0o03400011100FS
290x1D0o03500011101GS
300x1E0o03600011110RS
310x1F0o03700011111US
320x200o04000100000 Space
330x210o04100100001!!
340x220o04200100010""
350x230o04300100011##
360x240o04400100100$$
370x250o04500100101%%

Explore the Full ASCII Table

Browse all 128 ASCII characters with codes, representations, and detailed references.