Subset With Dot

Shortcodes

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

Unicode
U+2ABD
HTML Code
⪽
HEX Code
⪽
CSS Code
\2ABD
JS/JSON
\u2ABD
Unix/C/PHP/JAVA
0x2ABD
URL-encode
%E2%AA%BD

Customize Subset With Dot

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪽</span>
HTML Code:
<span>&#10941;</span>
HEX Code:
<span>&#x2ABD;</span>

Add with CSS

.subset-with-dot::before {
  content: '\\2ABD';
}

Set it in JavaScript

document.querySelector('.subset-with-dot').textContent = '⪽';
copied