Left Five Eighths Block

Shortcodes

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

Unicode
U+258B
HTML Code
▋
HEX Code
▋
CSS Code
\258B
JS/JSON
\u258B
Unix/C/PHP/JAVA
0x258B
URL-encode
%E2%96%8B

Customize Left Five Eighths Block

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

  

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

Insert in HTML

1. Direct symbol:
<span>▋</span>
HTML Code:
<span>&#9611;</span>
HEX Code:
<span>&#x258B;</span>

Add with CSS

.left-five-eighths-block::before {
  content: '\\258B';
}

Set it in JavaScript

document.querySelector('.left-five-eighths-block').textContent = '▋';
copied