Line Tabulation

Shortcodes

Copy useful codes for line tabulation symbol to use in websites, apps, blogs, and docs.

Unicode
U+000B
HTML Code

HEX Code

CSS Code
000B
JS/JSON
u000B
Unix/C/PHP/JAVA
0x000B
URL-encode
%0B

Customize Line Tabulation

Customize , download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Line Tabulation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span></span>
HTML Code:
<span>&#11;</span>
HEX Code:
<span>&#x000B;</span>

Add with CSS

.line-tabulation::before {
  content: '000B';
}

Set it in JavaScript

document.querySelector('.line-tabulation').textContent = '';
copied