Subset Of Or Equal To With Dot Above

Shortcodes

Copy useful codes for subset of or equal to with dot above symbol ⫃ to use in websites, apps, blogs, and docs.

Unicode
U+2AC3
HTML Code
⫃
HEX Code
⫃
CSS Code
\2AC3
JS/JSON
\u2AC3
Unix/C/PHP/JAVA
0x2AC3
URL-encode
%E2%AB%83

Customize Subset Of Or Equal To With Dot Above

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

  

How to use Subset Of Or Equal To With Dot Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫃</span>
HTML Code:
<span>&#10947;</span>
HEX Code:
<span>&#x2AC3;</span>

Add with CSS

.subset-of-or-equal-to-with-dot-above::before {
  content: '\\2AC3';
}

Set it in JavaScript

document.querySelector('.subset-of-or-equal-to-with-dot-above').textContent = '⫃';
copied