Subset With Multiplication Sign Below

Shortcodes

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

Unicode
U+2AC1
HTML Code
⫁
HEX Code
⫁
CSS Code
\2AC1
JS/JSON
\u2AC1
Unix/C/PHP/JAVA
0x2AC1
URL-encode
%E2%AB%81

Customize Subset With Multiplication Sign Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫁</span>
HTML Code:
<span>&#10945;</span>
HEX Code:
<span>&#x2AC1;</span>

Add with CSS

.subset-with-multiplication-sign-below::before {
  content: '\\2AC1';
}

Set it in JavaScript

document.querySelector('.subset-with-multiplication-sign-below').textContent = '⫁';
copied