Skip to content

VT — Vertical Tab

Byte0x0B
MnemonicVT
Otty support✓ (treated as LF)

Description

Historically advanced the cursor to the next vertical tab stop. Vertical tab stops are essentially never used on modern terminals — Otty (like every modern emulator) treats VT as a synonym for LF.

Example

bash
printf 'one\vtwo\n'      # \v is the C escape for VT
                          # behaves like LF: "two" appears on the next row

Otty