Square With Left Half Black

Shortcodes

Copy useful codes for square with left half black symbol ◧ to use in websites, apps, blogs, and docs.

Unicode
U+25E7
HTML Code
◧
HEX Code
◧
CSS Code
\25E7
JS/JSON
\u25E7
Unix/C/PHP/JAVA
0x25E7
URL-encode
%E2%97%A7

Customize Square With Left Half Black

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

  

How to use Square With Left Half Black Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◧</span>
HTML Code:
<span>&#9703;</span>
HEX Code:
<span>&#x25E7;</span>

Add with CSS

.square-with-left-half-black::before {
  content: '\\25E7';
}

Set it in JavaScript

document.querySelector('.square-with-left-half-black').textContent = '◧';
copied