Black Small Lozenge

Shortcodes

Copy and paste codes for Black Small Lozenge symbol ⬪ to use in your websites, apps, blogs, and more.

Unicode
U+2B2A
HTML Code
⬪
HEX Code
⬪
CSS Code
\2B2A
JS/JSON
\u2B2A
Unix/C/PHP/JAVA
0x2B2A
URL-encode
%E2%AC%AA
copied

Customize Black Small Lozenge Symbol

Customize ⬪ symbol as you like and download Black Small Lozenge 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 Small Lozenge symbol in HTML, CSS, and JS?

Insert ⬪ Black Small Lozenge using HTML

1. Copy-paste Black Small Lozenge directly:
<span>⬪</span>
2. HTML Decimal Code:
<span>&#11050;</span>
3. Hexadecimal Code:
<span>&#x2B2A;</span>
Preview:

Add Black Small Lozenge symbol with CSS

.black-small-lozenge::before {
    content: '\\2B2A';
}
Preview: Black Small Lozenge

Black Small Lozenge JavaScript Code

1. Direct Symbol:
document.querySelector('.black-small-lozenge').textContent = '⬪';
2. Unicode Escape for ⬪:
document.querySelector('.black-small-lozenge').textContent = '\u2B2A';
Preview: