DevKits

ASCII 9

Horizontal Tab (HT)

Control character

The Tab character (\t). Advances the cursor to the next tab stop.

All encodings at a glance

Decimal9
Hexadecimal0x09
Octal0011
Binary00001001
HTML numeric entity	
URL encoding%09
UTF-8 bytes0x09

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

&#9;   <!-- numeric entity (no named entity for this character) -->

Nearby codes