Circled Bullet

⦿

Shortcodes

Copy useful codes for circled bullet symbol ⦿ to use in websites, apps, blogs, and docs.

Unicode
U+29BF
HTML Code
⦿
HEX Code
⦿
CSS Code
\29BF
JS/JSON
\u29BF
Unix/C/PHP/JAVA
0x29BF
URL-encode
%E2%A6%BF

Customize Circled Bullet

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

⦿
  

How to use Circled Bullet Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦿</span>
HTML Code:
<span>&#10687;</span>
HEX Code:
<span>&#x29BF;</span>

Add with CSS

.circled-bullet::before {
  content: '\\29BF';
}

Set it in JavaScript

document.querySelector('.circled-bullet').textContent = '⦿';
copied