Neither A Subset Of Nor Equal To

Shortcodes

Copy useful codes for neither a subset of nor equal to symbol ⊈ to use in websites, apps, blogs, and docs.

Unicode
U+2288
HTML Code
⊈
HEX Code
⊈
CSS Code
\2288
JS/JSON
\u2288
Unix/C/PHP/JAVA
0x2288
URL-encode
%E2%8A%88

Customize Neither A Subset Of Nor Equal To

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

  

How to use Neither A Subset Of Nor Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊈</span>
HTML Code:
<span>&#8840;</span>
HEX Code:
<span>&#x2288;</span>

Add with CSS

.neither-a-subset-of-nor-equal-to::before {
  content: '\\2288';
}

Set it in JavaScript

document.querySelector('.neither-a-subset-of-nor-equal-to').textContent = '⊈';
copied