Not A Superset Of

Shortcodes

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

Unicode
U+2285
HTML Code
⊅
HEX Code
⊅
CSS Code
\2285
JS/JSON
\u2285
Unix/C/PHP/JAVA
0x2285
URL-encode
%E2%8A%85

Customize Not A Superset Of

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊅</span>
HTML Code:
<span>&#8837;</span>
HEX Code:
<span>&#x2285;</span>

Add with CSS

.not-a-superset-of::before {
  content: '\\2285';
}

Set it in JavaScript

document.querySelector('.not-a-superset-of').textContent = '⊅';
copied