Superset Of Or Equal To With Dot Above

Shortcodes

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

Unicode
U+2AC4
HTML Code
⫄
HEX Code
⫄
CSS Code
\2AC4
JS/JSON
\u2AC4
Unix/C/PHP/JAVA
0x2AC4
URL-encode
%E2%AB%84

Customize Superset Of Or Equal To With Dot Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫄</span>
HTML Code:
<span>&#10948;</span>
HEX Code:
<span>&#x2AC4;</span>

Add with CSS

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

Set it in JavaScript

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