Circled White Bullet

Shortcodes

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

Unicode
U+29BE
HTML Code
⦾
HEX Code
⦾
CSS Code
\29BE
JS/JSON
\u29BE
Unix/C/PHP/JAVA
0x29BE
URL-encode
%E2%A6%BE

Customize Circled White Bullet

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦾</span>
HTML Code:
<span>&#10686;</span>
HEX Code:
<span>&#x29BE;</span>

Add with CSS

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

Set it in JavaScript

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