White Circle

Shortcodes

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

Unicode
U+25CB
Alt Code
9
HTML Code
○
HEX Code
○
CSS Code
\25CB
JS/JSON
\u25CB
Unix/C/PHP/JAVA
0x25CB
URL-encode
%E2%97%8B

Customize White Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>○</span>
HTML Code:
<span>&#9675;</span>
HEX Code:
<span>&#x25CB;</span>

Add with CSS

.white-circle::before {
  content: '\\25CB';
}

Set it in JavaScript

document.querySelector('.white-circle').textContent = '○';
copied