White Left-pointing Triangle

Shortcodes

Copy useful codes for white left-pointing triangle symbol ◁ to use in websites, apps, blogs, and docs.

Unicode
U+25C1
HTML Code
◁
HEX Code
◁
CSS Code
\25C1
JS/JSON
\u25C1
Unix/C/PHP/JAVA
0x25C1
URL-encode
%E2%97%81

Customize White Left-pointing Triangle

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

  

How to use White Left-pointing Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◁</span>
HTML Code:
<span>&#9665;</span>
HEX Code:
<span>&#x25C1;</span>

Add with CSS

.white-left-pointing-triangle::before {
  content: '\\25C1';
}

Set it in JavaScript

document.querySelector('.white-left-pointing-triangle').textContent = '◁';
copied