Medium Small White Circle

Shortcodes

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

Unicode
U+26AC
HTML Code
⚬
HEX Code
⚬
CSS Code
26AC
JS/JSON
u26AC
Unix/C/PHP/JAVA
0x26AC
URL-encode
%E2%9A%AC

Customize Medium Small White Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⚬</span>
HTML Code:
<span>&#9900;</span>
HEX Code:
<span>&#x26AC;</span>

Add with CSS

.medium-small-white-circle::before {
  content: '26AC';
}

Set it in JavaScript

document.querySelector('.medium-small-white-circle').textContent = '⚬';
copied