Left And Right Double Turnstile

Shortcodes

Copy useful codes for left and right double turnstile symbol ⟚ to use in websites, apps, blogs, and docs.

Unicode
U+27DA
HTML Code
⟚
HEX Code
⟚
CSS Code
\27DA
JS/JSON
\u27DA
Unix/C/PHP/JAVA
0x27DA
URL-encode
%E2%9F%9A

Customize Left And Right Double Turnstile

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

  

How to use Left And Right Double Turnstile Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟚</span>
HTML Code:
<span>&#10202;</span>
HEX Code:
<span>&#x27DA;</span>

Add with CSS

.left-and-right-double-turnstile::before {
  content: '\\27DA';
}

Set it in JavaScript

document.querySelector('.left-and-right-double-turnstile').textContent = '⟚';
copied