White Vertical Rectangle

Shortcodes

Copy and paste codes for White Vertical Rectangle symbol ▯ to use in your websites, apps, blogs, and more.

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

Customize White Vertical Rectangle Symbol

Customize ▯ symbol as you like and download White Vertical Rectangle as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add White Vertical Rectangle symbol in HTML, CSS, and JS?

Insert ▯ White Vertical Rectangle using HTML

1. Copy-paste White Vertical Rectangle directly:
<span>▯</span>
2. HTML Decimal Code:
<span>&#9647;</span>
3. Hexadecimal Code:
<span>&#x25AF;</span>
Preview:

Add White Vertical Rectangle symbol with CSS

.white-vertical-rectangle::before {
    content: '\\25AF';
}
Preview: White Vertical Rectangle

White Vertical Rectangle JavaScript Code

1. Direct Symbol:
document.querySelector('.white-vertical-rectangle').textContent = '▯';
2. Unicode Escape for ▯:
document.querySelector('.white-vertical-rectangle').textContent = '\u25AF';
Preview: