Superset With Dot

Shortcodes

Copy useful codes for superset with dot symbol ⪾ to use in websites, apps, blogs, and docs.

Unicode
U+2ABE
HTML Code
⪾
HEX Code
⪾
CSS Code
\2ABE
JS/JSON
\u2ABE
Unix/C/PHP/JAVA
0x2ABE
URL-encode
%E2%AA%BE

Customize Superset With Dot

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

  

How to use Superset With Dot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪾</span>
HTML Code:
<span>&#10942;</span>
HEX Code:
<span>&#x2ABE;</span>

Add with CSS

.superset-with-dot::before {
  content: '\\2ABE';
}

Set it in JavaScript

document.querySelector('.superset-with-dot').textContent = '⪾';
copied