Toolman

ASCII code for vertical tab

11

Vertical Tab — a control character, not printable

Decimal11
Hexadecimal0x0B
Octal0013
Binary00001011
HTML entity
String escape\v

What it is

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

The full entry

ASCII 11 in full — the code point page, with what sits either side of it and how the character is encoded elsewhere.

Frequently asked questions

What is the ASCII code for vertical tab?

The ASCII code for vertical tab is 11 in decimal, 0x0B in hexadecimal and 0013 in octal.

What is vertical tab in binary?

00001011 — eight bits, though ASCII only defines seven, so the top bit is always zero.

How do I write vertical tab in a string?

Most languages accept the escape \v. Writing the raw character instead works in some contexts and breaks in others, which is what the escape exists to avoid.

Other characters

Every character by name · The ASCII table · Text to binary converter