Subset With Plus Sign Below

⪿

Shortcodes

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

Unicode
U+2ABF
HTML Code
⪿
HEX Code
⪿
CSS Code
\2ABF
JS/JSON
\u2ABF
Unix/C/PHP/JAVA
0x2ABF
URL-encode
%E2%AA%BF

Customize Subset With Plus Sign Below

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

⪿
  

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

Insert in HTML

1. Direct symbol:
<span>⪿</span>
HTML Code:
<span>&#10943;</span>
HEX Code:
<span>&#x2ABF;</span>

Add with CSS

.subset-with-plus-sign-below::before {
  content: '\\2ABF';
}

Set it in JavaScript

document.querySelector('.subset-with-plus-sign-below').textContent = '⪿';
copied