Left Seven Eighths Block

Shortcodes

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

Unicode
U+2589
HTML Code
▉
HEX Code
▉
CSS Code
\2589
JS/JSON
\u2589
Unix/C/PHP/JAVA
0x2589
URL-encode
%E2%96%89

Customize Left Seven Eighths Block

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

  

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

Insert in HTML

1. Direct symbol:
<span>▉</span>
HTML Code:
<span>&#9609;</span>
HEX Code:
<span>&#x2589;</span>

Add with CSS

.left-seven-eighths-block::before {
  content: '\\2589';
}

Set it in JavaScript

document.querySelector('.left-seven-eighths-block').textContent = '▉';
copied