Black Lower Left Triangle

Shortcodes

Copy useful codes for black lower left triangle symbol ◣ to use in websites, apps, blogs, and docs.

Unicode
U+25E3
HTML Code
◣
HEX Code
◣
CSS Code
\25E3
JS/JSON
\u25E3
Unix/C/PHP/JAVA
0x25E3
URL-encode
%E2%97%A3

Customize Black Lower Left Triangle

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

  

How to use Black Lower Left Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◣</span>
HTML Code:
<span>&#9699;</span>
HEX Code:
<span>&#x25E3;</span>

Add with CSS

.black-lower-left-triangle::before {
  content: '\\25E3';
}

Set it in JavaScript

document.querySelector('.black-lower-left-triangle').textContent = '◣';
copied