VT

ASCII Code 11

Vertical Tabulation

About This Character

ASCII code 11 (0x0B) represents the Vertical Tabulation (VT) control character. This is a non-printable character defined in the original ASCII standard (1963). It belongs to the format effector group, which controls the layout and positioning of text in output devices like printers and terminals. Control characters occupy codes 0–31 and 127 in the ASCII table and were originally designed for controlling hardware devices, managing communication links, and formatting text output. While many control characters have become obsolete with modern computing, several like LF (Line Feed), CR (Carriage Return), TAB, and ESC remain essential in everyday programming and text processing.

Character Encoding

Decimal 11
Octal 013
Hexadecimal 0x0B
Binary 00001011
HTML Code 
HTML Entity
Unicode U+000B
Unicode Name LINE TABULATION
URL Escape %0B
Quoted-Printable =0B
UTF-8 (Hex) 0B
Category Control — Format Effectors

How to Type in Code

JavaScript
// Using escape sequence
let char = '\v';
// Using String.fromCharCode
let char2 = String.fromCharCode(11);
Python
# Using escape sequence
char = '\v'
# Using chr()
char = chr(11)
HTML
<!-- Using HTML entity -->
&#11;
C#
// Using escape sequence
char c = '\v';
// Using cast
char c2 = (char)11;

See Also

Copied!