Circled Greater-than

Shortcodes

Copy useful codes for circled greater-than symbol ⧁ to use in websites, apps, blogs, and docs.

Unicode
U+29C1
HTML Code
⧁
HEX Code
⧁
CSS Code
\29C1
JS/JSON
\u29C1
Unix/C/PHP/JAVA
0x29C1
URL-encode
%E2%A7%81

Customize Circled Greater-than

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

  

How to use Circled Greater-than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧁</span>
HTML Code:
<span>&#10689;</span>
HEX Code:
<span>&#x29C1;</span>

Add with CSS

.circled-greater-than::before {
  content: '\\29C1';
}

Set it in JavaScript

document.querySelector('.circled-greater-than').textContent = '⧁';
copied