White Vertical Rectangle

Shortcodes

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

Unicode
U+25AF
HTML Code
▯
HEX Code
▯
CSS Code
\25AF
JS/JSON
\u25AF
Unix/C/PHP/JAVA
0x25AF
URL-encode
%E2%97%AF

Customize White Vertical Rectangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>▯</span>
HTML Code:
<span>&#9647;</span>
HEX Code:
<span>&#x25AF;</span>

Add with CSS

.white-vertical-rectangle::before {
  content: '\\25AF';
}

Set it in JavaScript

document.querySelector('.white-vertical-rectangle').textContent = '▯';
copied