Circle With Small Circle To The Right

Shortcodes

Copy useful codes for circle with small circle to the right symbol ⧂ to use in websites, apps, blogs, and docs.

Unicode
U+29C2
HTML Code
⧂
HEX Code
⧂
CSS Code
\29C2
JS/JSON
\u29C2
Unix/C/PHP/JAVA
0x29C2
URL-encode
%E2%A7%82

Customize Circle With Small Circle To The Right

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

  

How to use Circle With Small Circle To The Right Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧂</span>
HTML Code:
<span>&#10690;</span>
HEX Code:
<span>&#x29C2;</span>

Add with CSS

.circle-with-small-circle-to-the-right::before {
  content: '\\29C2';
}

Set it in JavaScript

document.querySelector('.circle-with-small-circle-to-the-right').textContent = '⧂';
copied