Superset Of

Shortcodes

Copy and paste codes for Superset Of symbol ⊃ to use in your websites, apps, blogs, and more.

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

Customize Superset Of Symbol

Customize ⊃ symbol as you like and download Superset Of as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Superset Of symbol in HTML, CSS, and JS?

Insert ⊃ Superset Of using HTML

1. Copy-paste Superset Of directly:
<span>⊃</span>
2. HTML Decimal Code:
<span>&#8835;</span>
3. Hexadecimal Code:
<span>&#x2283;</span>
Preview:

Add Superset Of symbol with CSS

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

Superset Of JavaScript Code

1. Direct Symbol:
document.querySelector('.superset-of').textContent = '⊃';
2. Unicode Escape for ⊃:
document.querySelector('.superset-of').textContent = '\u2283';
Preview: