Lower Three Eighths Block

Shortcodes

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

Unicode
U+2583
HTML Code
▃
HEX Code
▃
CSS Code
\2583
JS/JSON
\u2583
Unix/C/PHP/JAVA
0x2583
URL-encode
%E2%96%83

Customize Lower Three Eighths Block

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

  

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

Insert in HTML

1. Direct symbol:
<span>▃</span>
HTML Code:
<span>&#9603;</span>
HEX Code:
<span>&#x2583;</span>

Add with CSS

.lower-three-eighths-block::before {
  content: '\\2583';
}

Set it in JavaScript

document.querySelector('.lower-three-eighths-block').textContent = '▃';
copied