Lower One Eighth Block

Shortcodes

Copy useful codes for lower one eighth block symbol ▁ to use in websites, apps, blogs, and docs.

Unicode
U+2581
HTML Code
▁
HEX Code
▁
CSS Code
\2581
JS/JSON
\u2581
Unix/C/PHP/JAVA
0x2581
URL-encode
%E2%96%81

Customize Lower One Eighth Block

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

  

How to use Lower One Eighth Block Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▁</span>
HTML Code:
<span>&#9601;</span>
HEX Code:
<span>&#x2581;</span>

Add with CSS

.lower-one-eighth-block::before {
  content: '\\2581';
}

Set it in JavaScript

document.querySelector('.lower-one-eighth-block').textContent = '▁';
copied