White Left-pointing Pointer

Shortcodes

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

Unicode
U+25C5
HTML Code
◅
HEX Code
◅
CSS Code
\25C5
JS/JSON
\u25C5
Unix/C/PHP/JAVA
0x25C5
URL-encode
%E2%97%85

Customize White Left-pointing Pointer

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

  

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

Insert in HTML

1. Direct symbol:
<span>◅</span>
HTML Code:
<span>&#9669;</span>
HEX Code:
<span>&#x25C5;</span>

Add with CSS

.white-left-pointing-pointer::before {
  content: '\\25C5';
}

Set it in JavaScript

document.querySelector('.white-left-pointing-pointer').textContent = '◅';
copied