Superset Beside Subset

Shortcodes

Copy useful codes for superset beside subset symbol ⫗ to use in websites, apps, blogs, and docs.

Unicode
U+2AD7
HTML Code
⫗
HEX Code
⫗
CSS Code
\2AD7
JS/JSON
\u2AD7
Unix/C/PHP/JAVA
0x2AD7
URL-encode
%E2%AB%97

Customize Superset Beside Subset

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

  

How to use Superset Beside Subset Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫗</span>
HTML Code:
<span>&#10967;</span>
HEX Code:
<span>&#x2AD7;</span>

Add with CSS

.superset-beside-subset::before {
  content: '\\2AD7';
}

Set it in JavaScript

document.querySelector('.superset-beside-subset').textContent = '⫗';
copied