Similar Above Greater-than Above Equals Sign

Shortcodes

Copy useful codes for similar above greater-than above equals sign ⪠ to use in websites, apps, blogs, and docs.

Unicode
U+2AA0
HTML Code
⪠
HEX Code
⪠
CSS Code
\2AA0
JS/JSON
\u2AA0
Unix/C/PHP/JAVA
0x2AA0
URL-encode
%E2%AA%A0

Customize Similar Above Greater-than Above Equals Sign

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

  

How to use Similar Above Greater-than Above Equals Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪠</span>
HTML Code:
<span>&#10912;</span>
HEX Code:
<span>&#x2AA0;</span>

Add with CSS

.similar-above-greater-than-above-equals-sign::before {
  content: '\\2AA0';
}

Set it in JavaScript

document.querySelector('.similar-above-greater-than-above-equals-sign').textContent = '⪠';
copied