Greater-than Closed By Curve Above Slanted Equal

Shortcodes

Copy useful codes for greater-than closed by curve above slanted equal symbol ⪩ to use in websites, apps, blogs, and docs.

Unicode
U+2AA9
HTML Code
⪩
HEX Code
⪩
CSS Code
\2AA9
JS/JSON
\u2AA9
Unix/C/PHP/JAVA
0x2AA9
URL-encode
%E2%AA%A9

Customize Greater-than Closed By Curve Above Slanted Equal

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪩</span>
HTML Code:
<span>&#10921;</span>
HEX Code:
<span>&#x2AA9;</span>

Add with CSS

.greater-than-closed-by-curve-above-slanted-equal::before {
  content: '\\2AA9';
}

Set it in JavaScript

document.querySelector('.greater-than-closed-by-curve-above-slanted-equal').textContent = '⪩';
copied