Black Large Circle

Shortcodes

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

Unicode
U+2B24
HTML Code
⬤
HEX Code
⬤
CSS Code
\2B24
JS/JSON
\u2B24
Unix/C/PHP/JAVA
0x2B24
URL-encode
%E2%AC%A4
copied

Customize Black Large Circle Symbol

Customize ⬤ symbol as you like and download Black 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 Black Large Circle symbol in HTML, CSS, and JS?

Insert ⬤ Black Large Circle using HTML

1. Copy-paste Black Large Circle directly:
<span>⬤</span>
2. HTML Decimal Code:
<span>&#11044;</span>
3. Hexadecimal Code:
<span>&#x2B24;</span>
Preview:

Add Black Large Circle symbol with CSS

.black-large-circle::before {
    content: '\\2B24';
}
Preview: Black Large Circle

Black Large Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.black-large-circle').textContent = '⬤';
2. Unicode Escape for ⬤:
document.querySelector('.black-large-circle').textContent = '\u2B24';
Preview: