Circled Bullet

⦿

Shortcodes

Copy and paste codes for Circled Bullet symbol ⦿ to use in your websites, apps, blogs, and more.

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

Customize Circled Bullet Symbol

Customize ⦿ symbol as you like and download Circled Bullet as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
⦿
 

How to add Circled Bullet symbol in HTML, CSS, and JS?

Insert ⦿ Circled Bullet using HTML

1. Copy-paste Circled Bullet directly:
<span>⦿</span>
2. HTML Decimal Code:
<span>&#10687;</span>
3. Hexadecimal Code:
<span>&#x29BF;</span>
Preview: ⦿

Add Circled Bullet symbol with CSS

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

Circled Bullet JavaScript Code

1. Direct Symbol:
document.querySelector('.circled-bullet').textContent = '⦿';
2. Unicode Escape for ⦿:
document.querySelector('.circled-bullet').textContent = '\u29BF';
Preview: ⦿