Left Three Quarters Block

Shortcodes

Copy useful codes for left three quarters block symbol ▊ to use in websites, apps, blogs, and docs.

Unicode
U+258A
HTML Code
▊
HEX Code
▊
CSS Code
\258A
JS/JSON
\u258A
Unix/C/PHP/JAVA
0x258A
URL-encode
%E2%96%8A

Customize Left Three Quarters Block

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

  

How to use Left Three Quarters Block Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▊</span>
HTML Code:
<span>&#9610;</span>
HEX Code:
<span>&#x258A;</span>

Add with CSS

.left-three-quarters-block::before {
  content: '\\258A';
}

Set it in JavaScript

document.querySelector('.left-three-quarters-block').textContent = '▊';
copied