Dotted Circle

Shortcodes

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

Unicode
U+25CC
HTML Code
◌
HEX Code
◌
CSS Code
\25CC
JS/JSON
\u25CC
Unix/C/PHP/JAVA
0x25CC
URL-encode
%E2%97%8C

Customize Dotted Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>◌</span>
HTML Code:
<span>&#9676;</span>
HEX Code:
<span>&#x25CC;</span>

Add with CSS

.dotted-circle::before {
  content: '\\25CC';
}

Set it in JavaScript

document.querySelector('.dotted-circle').textContent = '◌';
copied