Squared Small Circle

Shortcodes

Copy useful codes for squared small circle symbol ⧇ to use in websites, apps, blogs, and docs.

Unicode
U+29C7
HTML Code
⧇
HEX Code
⧇
CSS Code
\29C7
JS/JSON
\u29C7
Unix/C/PHP/JAVA
0x29C7
URL-encode
%E2%A7%87

Customize Squared Small Circle

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

  

How to use Squared Small Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧇</span>
HTML Code:
<span>&#10695;</span>
HEX Code:
<span>&#x29C7;</span>

Add with CSS

.squared-small-circle::before {
  content: '\\29C7';
}

Set it in JavaScript

document.querySelector('.squared-small-circle').textContent = '⧇';
copied