Superset With Multiplication Sign Below

Shortcodes

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

Unicode
U+2AC2
HTML Code
⫂
HEX Code
⫂
CSS Code
\2AC2
JS/JSON
\u2AC2
Unix/C/PHP/JAVA
0x2AC2
URL-encode
%E2%AB%82

Customize Superset With Multiplication Sign Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫂</span>
HTML Code:
<span>&#10946;</span>
HEX Code:
<span>&#x2AC2;</span>

Add with CSS

.superset-with-multiplication-sign-below::before {
  content: '\\2AC2';
}

Set it in JavaScript

document.querySelector('.superset-with-multiplication-sign-below').textContent = '⫂';
copied