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
| Decimal | 11 |
| Hexadecimal | 0x0B |
| Octal | 0013 |
| Binary | 00001011 |
| HTML numeric entity |  |
| URL encoding | %0B |
| UTF-8 bytes | 0x0B |
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
 <!-- numeric entity (no named entity for this character) -->