Square With Upper Right To Lower Left Fill

Shortcodes

Copy useful codes for square with upper right to lower left fill symbol ▨ to use in websites, apps, blogs, and docs.

Unicode
U+25A8
HTML Code
▨
HEX Code
▨
CSS Code
\25A8
JS/JSON
\u25A8
Unix/C/PHP/JAVA
0x25A8
URL-encode
%E2%97%A8

Customize Square With Upper Right To Lower Left Fill

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

  

How to use Square With Upper Right To Lower Left Fill Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>▨</span>
HTML Code:
<span>&#9640;</span>
HEX Code:
<span>&#x25A8;</span>

Add with CSS

.square-with-upper-right-to-lower-left-fill::before {
  content: '\\25A8';
}

Set it in JavaScript

document.querySelector('.square-with-upper-right-to-lower-left-fill').textContent = '▨';
copied