Lower Five Eighths Block

Shortcodes

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

Unicode
U+2585
HTML Code
▅
HEX Code
▅
CSS Code
\2585
JS/JSON
\u2585
Unix/C/PHP/JAVA
0x2585
URL-encode
%E2%96%85

Customize Lower Five Eighths Block

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

  

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

Insert in HTML

1. Direct symbol:
<span>▅</span>
HTML Code:
<span>&#9605;</span>
HEX Code:
<span>&#x2585;</span>

Add with CSS

.lower-five-eighths-block::before {
  content: '\\2585';
}

Set it in JavaScript

document.querySelector('.lower-five-eighths-block').textContent = '▅';
copied