\t
Horizontal tab
Decimal: 9
Hex: 09
Control
ASCII Values
Decimal
9
Hexadecimal
0x09
Character
\t
Usage Examples
JavaScript (from decimal)
String.fromCharCode(9); // "\t"
JavaScript (to decimal)
"\t".charCodeAt(0); // 9
Python
chr(9) # "\t"
ord("\t") # 9C/C++
char c = 9; // '\t' int code = '\t'; // 9
Control Characters
Control characters (0-31, 127) are non-printable characters used for text formatting and device control. Common examples include newline (10), carriage return (13), and tab (9).