Black Lozenge

Shortcodes

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

Unicode
U+29EB
HTML Code
⧫
HEX Code
⧫
CSS Code
\29EB
JS/JSON
\u29EB
Unix/C/PHP/JAVA
0x29EB
URL-encode
%E2%A7%AB
copied

Customize Black Lozenge Symbol

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

Insert ⧫ Black Lozenge using HTML

1. Copy-paste Black Lozenge directly:
<span>⧫</span>
2. HTML Decimal Code:
<span>&#10731;</span>
3. Hexadecimal Code:
<span>&#x29EB;</span>
Preview:

Add Black Lozenge symbol with CSS

.black-lozenge::before {
    content: '\\29EB';
}
Preview: Black Lozenge

Black Lozenge JavaScript Code

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