Greater-than Closed By Curve

Shortcodes

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

Unicode
U+2AA7
HTML Code
⪧
HEX Code
⪧
CSS Code
\2AA7
JS/JSON
\u2AA7
Unix/C/PHP/JAVA
0x2AA7
URL-encode
%E2%AA%A7

Customize Greater-than Closed By Curve

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪧</span>
HTML Code:
<span>&#10919;</span>
HEX Code:
<span>&#x2AA7;</span>

Add with CSS

.greater-than-closed-by-curve::before {
  content: '\\2AA7';
}

Set it in JavaScript

document.querySelector('.greater-than-closed-by-curve').textContent = '⪧';
copied