keecode logokeecode
\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")  # 9

C/C++

char c = 9;  // '\t'
int code = '\t';  // 9