ASCII 9 — HT
HT (horizontal tab) at ASCII code 9.
All Representations
90x090o01100001001	Character Details
| Character | [HT] |
| Name | HT |
| Decimal | 9 |
| Hexadecimal | 0x09 |
| Octal | 0o011 |
| Binary | 00001001 |
| HTML Entity | 	 |
| Category | Whitespace |
| Printable | No |
About ASCII 9 (HT)
Horizontal Tab (HT) advances the cursor to the next tab stop, traditionally set at every eighth column position. The Tab key generates this character, and it appears in source code as '\t'. The tabs-versus-spaces debate in programming is one of the longest-running style wars in software development, with communities divided over whether HT or multiple Space characters are preferable for indentation. Tab characters carry semantic significance in Makefiles where only tabs can indent recipe lines, and in TSV data formats.
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, Horizontal Tab is assigned code point 9 in decimal (0x09 hexadecimal, 011 octal, 00001001 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 Horizontal Tab 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.