Toolman

ASCII 11

ASCII 11 is Vertical Tab — the control character VT.

Every representation

CharacterVT (not printable)
NameVertical Tab
Decimal11
Hexadecimal0x0B
Octal0013
Binary00001011
HTML entity
Escape sequence\\v
UnicodeU+000B
KeyboardCtrl+K
GroupControl character

What it is for

Advanced to the next vertical tab stop. Almost never used; it survives mainly as a character that breaks naive parsers.

Where the number comes from

Codes 0 to 31 were reserved for control: instructions to a teleprinter rather than characters to print. Code 11 is Ctrl+K because the Ctrl key was originally wired to clear the top two bits of whatever you typed, mapping the letter K at 75 down to 11.

Frequently asked questions

What is ASCII 11?

Vertical Tab (VT), a control character. In hexadecimal it is 0x0B, in octal 0013, and in binary 00001011.

How do I type ASCII 11?

Press Ctrl+K in a terminal. In a string literal you can write it as \\v or \\x0B in most languages.

Is ASCII 11 printable?

No. Codes 0 to 31 and 127 are control characters — they were instructions to a teleprinter rather than marks on paper, and most terminals show nothing for them.

Nearby codes

Full ASCII table · Text to binary converter · Number base converter