Negated Double Vertical Bar Double Right Turnstile

Shortcodes

Copy useful codes for negated double vertical bar double right turnstile symbol ⊯ to use in websites, apps, blogs, and docs.

Unicode
U+22AF
HTML Code
⊯
HEX Code
⊯
CSS Code
\22AF
JS/JSON
\u22AF
Unix/C/PHP/JAVA
0x22AF
URL-encode
%E2%8A%AF

Customize Negated Double Vertical Bar Double Right Turnstile

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊯</span>
HTML Code:
<span>&#8879;</span>
HEX Code:
<span>&#x22AF;</span>

Add with CSS

.negated-double-vertical-bar-double-right-turnstile::before {
  content: '\\22AF';
}

Set it in JavaScript

document.querySelector('.negated-double-vertical-bar-double-right-turnstile').textContent = '⊯';
copied