Vertical Bar Double Left Turnstile

Shortcodes

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

Unicode
U+2AE4
HTML Code
⫤
HEX Code
⫤
CSS Code
\2AE4
JS/JSON
\u2AE4
Unix/C/PHP/JAVA
0x2AE4
URL-encode
%E2%AB%A4

Customize Vertical Bar Double Left Turnstile

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫤</span>
HTML Code:
<span>&#10980;</span>
HEX Code:
<span>&#x2AE4;</span>

Add with CSS

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

Set it in JavaScript

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