Heavy Large Circle

Shortcodes

Copy and paste codes for Heavy Large Circle symbol ⭕ to use in your websites, apps, blogs, and more.

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

Customize Heavy Large Circle Symbol

Customize ⭕ symbol as you like and download Heavy Large Circle as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Heavy Large Circle symbol in HTML, CSS, and JS?

Insert ⭕ Heavy Large Circle using HTML

1. Copy-paste Heavy Large Circle directly:
<span>⭕</span>
2. HTML Decimal Code:
<span>&#11093;</span>
3. Hexadecimal Code:
<span>&#x2B55;</span>
Preview:

Add Heavy Large Circle symbol with CSS

.heavy-large-circle::before {
    content: '\\2B55';
}
Preview: Heavy Large Circle

Heavy Large Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.heavy-large-circle').textContent = '⭕';
2. Unicode Escape for ⭕:
document.querySelector('.heavy-large-circle').textContent = '\u2B55';
Preview: