VT

ASCII Character: Vertical Tabulation

ASCII Code 11 · Unicode U+000B · Hex 0x0B

vertical-tab vt

About the Vertical Tabulation 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.

Encoding Details

ASCII Code 11
Hexadecimal 0x0B
Octal 013
Binary 00001011
Unicode U+000B
Unicode Name LINE TABULATION
HTML Numeric 
HTML Entity
URL Escape %0B
UTF-8 (Hex) 0B
Quoted-Printable =0B

Source Code Examples

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;

Navigate

Copied!