Left Three Eighths Block

Shortcodes

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

Unicode
U+258D
HTML Code
▍
HEX Code
▍
CSS Code
\258D
JS/JSON
\u258D
Unix/C/PHP/JAVA
0x258D
URL-encode
%E2%96%8D

Customize Left Three Eighths Block

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

  

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

Insert in HTML

1. Direct symbol:
<span>▍</span>
HTML Code:
<span>&#9613;</span>
HEX Code:
<span>&#x258D;</span>

Add with CSS

.left-three-eighths-block::before {
  content: '\\258D';
}

Set it in JavaScript

document.querySelector('.left-three-eighths-block').textContent = '▍';
copied