Does Not Divide With Reversed Negation Slash

Shortcodes

Copy useful codes for does not divide with reversed negation slash symbol ⫮ to use in websites, apps, blogs, and docs.

Unicode
U+2AEE
HTML Code
⫮
HEX Code
⫮
CSS Code
\2AEE
JS/JSON
\u2AEE
Unix/C/PHP/JAVA
0x2AEE
URL-encode
%E2%AB%AE

Customize Does Not Divide With Reversed Negation Slash

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

  

How to use Does Not Divide With Reversed Negation Slash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫮</span>
HTML Code:
<span>&#10990;</span>
HEX Code:
<span>&#x2AEE;</span>

Add with CSS

.does-not-divide-with-reversed-negation-slash::before {
  content: '\\2AEE';
}

Set it in JavaScript

document.querySelector('.does-not-divide-with-reversed-negation-slash').textContent = '⫮';
copied