Triple Vertical Bar Right Turnstile

Shortcodes

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

Unicode
U+22AA
HTML Code
⊪
HEX Code
⊪
CSS Code
\22AA
JS/JSON
\u22AA
Unix/C/PHP/JAVA
0x22AA
URL-encode
%E2%8A%AA

Customize Triple Vertical Bar Right Turnstile

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊪</span>
HTML Code:
<span>&#8874;</span>
HEX Code:
<span>&#x22AA;</span>

Add with CSS

.triple-vertical-bar-right-turnstile::before {
  content: '\\22AA';
}

Set it in JavaScript

document.querySelector('.triple-vertical-bar-right-turnstile').textContent = '⊪';
copied