Not A Subset Of

Shortcodes

Copy useful codes for not a subset of symbol ⊄ to use in websites, apps, blogs, and docs.

Unicode
U+2284
HTML Code
⊄
HEX Code
⊄
CSS Code
\2284
JS/JSON
\u2284
Unix/C/PHP/JAVA
0x2284
URL-encode
%E2%8A%84

Customize Not A Subset Of

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

  

How to use Not A Subset Of Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊄</span>
HTML Code:
<span>&#8836;</span>
HEX Code:
<span>&#x2284;</span>

Add with CSS

.not-a-subset-of::before {
  content: '\\2284';
}

Set it in JavaScript

document.querySelector('.not-a-subset-of').textContent = '⊄';
copied