Vertical Bar Triple Right Turnstile

Shortcodes

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

Unicode
U+2AE2
HTML Code
⫢
HEX Code
⫢
CSS Code
\2AE2
JS/JSON
\u2AE2
Unix/C/PHP/JAVA
0x2AE2
URL-encode
%E2%AB%A2

Customize Vertical Bar Triple Right Turnstile

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫢</span>
HTML Code:
<span>&#10978;</span>
HEX Code:
<span>&#x2AE2;</span>

Add with CSS

.vertical-bar-triple-right-turnstile::before {
  content: '\\2AE2';
}

Set it in JavaScript

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