White Rectangle

Shortcodes

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

Unicode
U+25AD
HTML Code
▭
HEX Code
▭
CSS Code
\25AD
JS/JSON
\u25AD
Unix/C/PHP/JAVA
0x25AD
URL-encode
%E2%97%AD
copied

Customize White Rectangle Symbol

Customize ▭ symbol as you like and download White 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 Rectangle symbol in HTML, CSS, and JS?

Insert ▭ White Rectangle using HTML

1. Copy-paste White Rectangle directly:
<span>▭</span>
2. HTML Decimal Code:
<span>&#9645;</span>
3. Hexadecimal Code:
<span>&#x25AD;</span>
Preview:

Add White Rectangle symbol with CSS

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

White Rectangle JavaScript Code

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