Double Stroke Not Sign

Shortcodes

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

Unicode
U+2AEC
HTML Code
⫬
HEX Code
⫬
CSS Code
\2AEC
JS/JSON
\u2AEC
Unix/C/PHP/JAVA
0x2AEC
URL-encode
%E2%AB%AC

Customize Double Stroke Not Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫬</span>
HTML Code:
<span>&#10988;</span>
HEX Code:
<span>&#x2AEC;</span>

Add with CSS

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

Set it in JavaScript

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