Double Vertical Bar Double Left Turnstile

Shortcodes

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

Unicode
U+2AE5
HTML Code
⫥
HEX Code
⫥
CSS Code
\2AE5
JS/JSON
\u2AE5
Unix/C/PHP/JAVA
0x2AE5
URL-encode
%E2%AB%A5

Customize Double Vertical Bar Double Left Turnstile

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫥</span>
HTML Code:
<span>&#10981;</span>
HEX Code:
<span>&#x2AE5;</span>

Add with CSS

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

Set it in JavaScript

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