Heavy Large Circle

Shortcodes

Copy useful codes for heavy large circle symbol ⭕ to use in websites, apps, blogs, and docs.

Unicode
U+2B55
HTML Code
⭕
HEX Code
⭕
CSS Code
\2B55
JS/JSON
\u2B55
Unix/C/PHP/JAVA
0x2B55
URL-encode
%E2%AD%95

Customize Heavy Large Circle

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

  

How to use Heavy Large Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⭕</span>
HTML Code:
<span>&#11093;</span>
HEX Code:
<span>&#x2B55;</span>

Add with CSS

.heavy-large-circle::before {
  content: '\\2B55';
}

Set it in JavaScript

document.querySelector('.heavy-large-circle').textContent = '⭕';
copied