ASCII 9
Horizontal Tab (HT)
Control character
The Tab character (\t). Advances the cursor to the next tab stop.
All encodings at a glance
| Decimal | 9 |
| Hexadecimal | 0x09 |
| Octal | 0011 |
| Binary | 00001001 |
| HTML numeric entity | 	 |
| URL encoding | %09 |
| UTF-8 bytes | 0x09 |
Code snippets
JavaScript
String.fromCharCode(9); // "HT"
9.toString(16); // "09"Python
chr(9) # control char HT
ord(chr(9)) # 9
hex(9) # '0x09'HTML
	 <!-- numeric entity (no named entity for this character) -->