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

Shortcodes

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

Unicode
U+2A91
HTML Code
⪑
HEX Code
⪑
CSS Code
\2A91
JS/JSON
\u2A91
Unix/C/PHP/JAVA
0x2A91
URL-encode
%E2%AA%91

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

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪑</span>
HTML Code:
<span>&#10897;</span>
HEX Code:
<span>&#x2A91;</span>

Add with CSS

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

Set it in JavaScript

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