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

Shortcodes

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

Unicode
U+2A94
HTML Code
⪔
HEX Code
⪔
CSS Code
\2A94
JS/JSON
\u2A94
Unix/C/PHP/JAVA
0x2A94
URL-encode
%E2%AA%94

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

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪔</span>
HTML Code:
<span>&#10900;</span>
HEX Code:
<span>&#x2A94;</span>

Add with CSS

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

Set it in JavaScript

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