Reversed Double Stroke Not Sign

Shortcodes

Copy useful codes for reversed double stroke not sign ⫭ to use in websites, apps, blogs, and docs.

Unicode
U+2AED
HTML Code
⫭
HEX Code
⫭
CSS Code
\2AED
JS/JSON
\u2AED
Unix/C/PHP/JAVA
0x2AED
URL-encode
%E2%AB%AD

Customize Reversed Double Stroke Not Sign

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

  

How to use Reversed Double Stroke Not Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫭</span>
HTML Code:
<span>&#10989;</span>
HEX Code:
<span>&#x2AED;</span>

Add with CSS

.reversed-double-stroke-not-sign::before {
  content: '\\2AED';
}

Set it in JavaScript

document.querySelector('.reversed-double-stroke-not-sign').textContent = '⫭';
copied