White Parallelogram

Shortcodes

Copy useful codes for white parallelogram symbol ▱ to use in websites, apps, blogs, and docs.

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

Customize White Parallelogram

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

  

How to use White Parallelogram Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▱</span>
HTML Code:
<span>&#9649;</span>
HEX Code:
<span>&#x25B1;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.white-parallelogram').textContent = '▱';
copied