White Bullet

Shortcodes

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

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

Customize White Bullet

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

  

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

Insert in HTML

1. Direct symbol:
<span>◦</span>
HTML Code:
<span>&#9702;</span>
HEX Code:
<span>&#x25E6;</span>

Add with CSS

.white-bullet::before {
  content: '\\0025E6';
}

Set it in JavaScript

document.querySelector('.white-bullet').textContent = '◦';
copied