Double Vertical Bar Left Turnstile

Shortcodes

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

Unicode
U+2AE3
HTML Code
⫣
HEX Code
⫣
CSS Code
\2AE3
JS/JSON
\u2AE3
Unix/C/PHP/JAVA
0x2AE3
URL-encode
%E2%AB%A3

Customize Double Vertical Bar Left Turnstile

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫣</span>
HTML Code:
<span>&#10979;</span>
HEX Code:
<span>&#x2AE3;</span>

Add with CSS

.double-vertical-bar-left-turnstile::before {
  content: '\\2AE3';
}

Set it in JavaScript

document.querySelector('.double-vertical-bar-left-turnstile').textContent = '⫣';
copied