Lower Seven Eighths Block

Shortcodes

Copy useful codes for lower seven eighths block symbol ▇ to use in websites, apps, blogs, and docs.

Unicode
U+2587
HTML Code
▇
HEX Code
▇
CSS Code
\2587
JS/JSON
\u2587
Unix/C/PHP/JAVA
0x2587
URL-encode
%E2%96%87

Customize Lower Seven Eighths Block

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

  

How to use Lower Seven Eighths Block Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▇</span>
HTML Code:
<span>&#9607;</span>
HEX Code:
<span>&#x2587;</span>

Add with CSS

.lower-seven-eighths-block::before {
  content: '\\2587';
}

Set it in JavaScript

document.querySelector('.lower-seven-eighths-block').textContent = '▇';
copied