DevKits

ASCII 11

Vertical Tab (VT)

Control character

Advances to the next vertical tab stop. Almost never used in modern text.

All encodings at a glance

Decimal11
Hexadecimal0x0B
Octal0013
Binary00001011
HTML numeric entity
URL encoding%0B
UTF-8 bytes0x0B

Code snippets

JavaScript

String.fromCharCode(11); // "VT"
11.toString(16); // "0b"

Python

chr(11)           # control char VT
ord(chr(11))      # 11
hex(11)           # '0x0b'

HTML

&#11;   <!-- numeric entity (no named entity for this character) -->

Nearby codes