Square With Vertical Fill

Shortcodes

Copy useful codes for square with vertical fill symbol ▥ to use in websites, apps, blogs, and docs.

Unicode
U+25A5
HTML Code
▥
HEX Code
▥
CSS Code
\25A5
JS/JSON
\u25A5
Unix/C/PHP/JAVA
0x25A5
URL-encode
%E2%97%A5

Customize Square With Vertical Fill

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

  

How to use Square With Vertical Fill Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▥</span>
HTML Code:
<span>&#9637;</span>
HEX Code:
<span>&#x25A5;</span>

Add with CSS

.square-with-vertical-fill::before {
  content: '\\25A5';
}

Set it in JavaScript

document.querySelector('.square-with-vertical-fill').textContent = '▥';
copied