Double Vertical Bar Double Right Turnstile

Shortcodes

Copy useful codes for double vertical bar double right turnstile symbol ⊫ to use in websites, apps, blogs, and docs.

Unicode
U+22AB
HTML Code
⊫
HEX Code
⊫
CSS Code
\22AB
JS/JSON
\u22AB
Unix/C/PHP/JAVA
0x22AB
URL-encode
%E2%8A%AB

Customize Double Vertical Bar Double Right Turnstile

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

  

How to use Double Vertical Bar Double Right Turnstile Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊫</span>
HTML Code:
<span>&#8875;</span>
HEX Code:
<span>&#x22AB;</span>

Add with CSS

.double-vertical-bar-double-right-turnstile::before {
  content: '\\22AB';
}

Set it in JavaScript

document.querySelector('.double-vertical-bar-double-right-turnstile').textContent = '⊫';
copied