Greater-than Above Less-than Above Double-line Equal

Shortcodes

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

Unicode
U+2A92
HTML Code
⪒
HEX Code
⪒
CSS Code
\2A92
JS/JSON
\u2A92
Unix/C/PHP/JAVA
0x2A92
URL-encode
%E2%AA%92

Customize Greater-than Above Less-than Above Double-line Equal

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪒</span>
HTML Code:
<span>&#10898;</span>
HEX Code:
<span>&#x2A92;</span>

Add with CSS

.greater-than-above-less-than-above-double-line-equal::before {
  content: '\\2A92';
}

Set it in JavaScript

document.querySelector('.greater-than-above-less-than-above-double-line-equal').textContent = '⪒';
copied