Less-than Above Slanted Equal Above Greater-than Above Slanted Equal

Shortcodes

Copy useful codes for less-than above slanted equal above greater-than above slanted equal symbol ⪓ to use in websites, apps, blogs, and docs.

Unicode
U+2A93
HTML Code
⪓
HEX Code
⪓
CSS Code
\2A93
JS/JSON
\u2A93
Unix/C/PHP/JAVA
0x2A93
URL-encode
%E2%AA%93

Customize Less-than Above Slanted Equal Above Greater-than Above Slanted Equal

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

  

How to use Less-than Above Slanted Equal Above Greater-than Above Slanted Equal Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪓</span>
HTML Code:
<span>&#10899;</span>
HEX Code:
<span>&#x2A93;</span>

Add with CSS

.less-than-above-slanted-equal-above-greater-than-above-slanted-equal::before {
  content: '\\2A93';
}

Set it in JavaScript

document.querySelector('.less-than-above-slanted-equal-above-greater-than-above-slanted-equal').textContent = '⪓';
copied