White Bullet

Shortcodes

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

Unicode
U+25E6
HTML Code
◦
HEX Code
◦
CSS Code
\25E6
JS/JSON
\u25E6
Unix/C/PHP/JAVA
0x25E6
URL-encode
%E2%97%A6
copied

Customize White Bullet Symbol

Customize ◦ symbol as you like and download White 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 White Bullet symbol in HTML, CSS, and JS?

Insert ◦ White Bullet using HTML

1. Copy-paste White Bullet directly:
<span>◦</span>
2. HTML Decimal Code:
<span>&#9702;</span>
3. Hexadecimal Code:
<span>&#x25E6;</span>
Preview:

Add White Bullet symbol with CSS

.white-bullet::before {
    content: '\\25E6';
}
Preview: White Bullet

White Bullet JavaScript Code

1. Direct Symbol:
document.querySelector('.white-bullet').textContent = '◦';
2. Unicode Escape for ◦:
document.querySelector('.white-bullet').textContent = '\u25E6';
Preview: