Superset Above Superset

Shortcodes

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

Unicode
U+2AD6
HTML Code
⫖
HEX Code
⫖
CSS Code
\2AD6
JS/JSON
\u2AD6
Unix/C/PHP/JAVA
0x2AD6
URL-encode
%E2%AB%96

Customize Superset Above Superset

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫖</span>
HTML Code:
<span>&#10966;</span>
HEX Code:
<span>&#x2AD6;</span>

Add with CSS

.superset-above-superset::before {
  content: '\\2AD6';
}

Set it in JavaScript

document.querySelector('.superset-above-superset').textContent = '⫖';
copied