Greater-than With Circle Inside

Shortcodes

Copy useful codes for greater-than with circle inside symbol ⩺ to use in websites, apps, blogs, and docs.

Unicode
U+2A7A
HTML Code
⩺
HEX Code
⩺
CSS Code
\2A7A
JS/JSON
\u2A7A
Unix/C/PHP/JAVA
0x2A7A
URL-encode
%E2%A9%BA

Customize Greater-than With Circle Inside

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

  

How to use Greater-than With Circle Inside Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩺</span>
HTML Code:
<span>&#10874;</span>
HEX Code:
<span>&#x2A7A;</span>

Add with CSS

.greater-than-with-circle-inside::before {
  content: '\\2A7A';
}

Set it in JavaScript

document.querySelector('.greater-than-with-circle-inside').textContent = '⩺';
copied