Black Vertical Rectangle

Shortcodes

Copy useful codes for black vertical rectangle symbol ▮ to use in websites, apps, blogs, and docs.

Unicode
U+25AE
HTML Code
▮
HEX Code
▮
CSS Code
\25AE
JS/JSON
\u25AE
Unix/C/PHP/JAVA
0x25AE
URL-encode
%E2%97%AE

Customize Black Vertical Rectangle

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

  

How to use Black Vertical Rectangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▮</span>
HTML Code:
<span>&#9646;</span>
HEX Code:
<span>&#x25AE;</span>

Add with CSS

.black-vertical-rectangle::before {
  content: '\\25AE';
}

Set it in JavaScript

document.querySelector('.black-vertical-rectangle').textContent = '▮';
copied