Medium White Circle

Shortcodes

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

Unicode
U+26AA
HTML Code
⚪
HEX Code
⚪
CSS Code
\26AA
JS/JSON
\u26AA
Unix/C/PHP/JAVA
0x26AA
URL-encode
%E2%9A%AA

Customize Medium White Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⚪</span>
HTML Code:
<span>&#9898;</span>
HEX Code:
<span>&#x26AA;</span>

Add with CSS

.medium-white-circle::before {
  content: '\\26AA';
}

Set it in JavaScript

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