Superset Of

Shortcodes

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

Unicode
U+2283
HTML Code
⊃
HEX Code
⊃
CSS Code
\2283
JS/JSON
\u2283
Unix/C/PHP/JAVA
0x2283
URL-encode
%E2%8A%83

Customize Superset Of

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊃</span>
HTML Code:
<span>&#8835;</span>
HEX Code:
<span>&#x2283;</span>

Add with CSS

.superset-of::before {
  content: '\\2283';
}

Set it in JavaScript

document.querySelector('.superset-of').textContent = '⊃';
copied