Superset With Plus Sign Below

Shortcodes

Copy useful codes for superset with plus sign below symbol ⫀ to use in websites, apps, blogs, and docs.

Unicode
U+2AC0
HTML Code
⫀
HEX Code
⫀
CSS Code
\2AC0
JS/JSON
\u2AC0
Unix/C/PHP/JAVA
0x2AC0
URL-encode
%E2%AB%80

Customize Superset With Plus Sign Below

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

  

How to use Superset With Plus Sign Below Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫀</span>
HTML Code:
<span>&#10944;</span>
HEX Code:
<span>&#x2AC0;</span>

Add with CSS

.superset-with-plus-sign-below::before {
  content: '\\2AC0';
}

Set it in JavaScript

document.querySelector('.superset-with-plus-sign-below').textContent = '⫀';
copied