Black Parallelogram

Shortcodes

Copy useful codes for black parallelogram symbol ▰ to use in websites, apps, blogs, and docs.

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

Customize Black Parallelogram

Customize ▰, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Black Parallelogram Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▰</span>
HTML Code:
<span>&#9648;</span>
HEX Code:
<span>&#x25B0;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.black-parallelogram').textContent = '▰';
copied