Black Upper Left Triangle

Shortcodes

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

Unicode
U+25E4
HTML Code
◤
HEX Code
◤
CSS Code
\25E4
JS/JSON
\u25E4
Unix/C/PHP/JAVA
0x25E4
URL-encode
%E2%97%A4

Customize Black Upper Left Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>◤</span>
HTML Code:
<span>&#9700;</span>
HEX Code:
<span>&#x25E4;</span>

Add with CSS

.black-upper-left-triangle::before {
  content: '\\25E4';
}

Set it in JavaScript

document.querySelector('.black-upper-left-triangle').textContent = '◤';
copied