White Parallelogram

Shortcodes

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

Unicode
U+25B1
HTML Code
▱
HEX Code
▱
CSS Code
\25B1
JS/JSON
\u25B1
Unix/C/PHP/JAVA
0x25B1
URL-encode
%E2%96%B1
copied

Customize White Parallelogram Symbol

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

Insert ▱ White Parallelogram using HTML

1. Copy-paste White Parallelogram directly:
<span>▱</span>
2. HTML Decimal Code:
<span>&#9649;</span>
3. Hexadecimal Code:
<span>&#x25B1;</span>
Preview:

Add White Parallelogram symbol with CSS

.white-parallelogram::before {
    content: '\\25B1';
}
Preview: White Parallelogram

White Parallelogram JavaScript Code

1. Direct Symbol:
document.querySelector('.white-parallelogram').textContent = '▱';
2. Unicode Escape for ▱:
document.querySelector('.white-parallelogram').textContent = '\u25B1';
Preview: