Black Parallelogram

Shortcodes

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

Unicode
U+25B0
HTML Code
▰
HEX Code
▰
CSS Code
\25B0
JS/JSON
\u25B0
Unix/C/PHP/JAVA
0x25B0
URL-encode
%E2%96%B0
copied

Customize Black Parallelogram Symbol

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

Insert ▰ Black Parallelogram using HTML

1. Copy-paste Black Parallelogram directly:
<span>▰</span>
2. HTML Decimal Code:
<span>&#9648;</span>
3. Hexadecimal Code:
<span>&#x25B0;</span>
Preview:

Add Black Parallelogram symbol with CSS

.black-parallelogram::before {
    content: '\\25B0';
}
Preview: Black Parallelogram

Black Parallelogram JavaScript Code

1. Direct Symbol:
document.querySelector('.black-parallelogram').textContent = '▰';
2. Unicode Escape for ▰:
document.querySelector('.black-parallelogram').textContent = '\u25B0';
Preview: