White Left Pointing Index

Shortcodes

Copy useful codes for white left pointing index symbol ☜ to use in websites, apps, blogs, and docs.

Unicode
U+261C
HTML Code
☜
HEX Code
☜
CSS Code
\261C
JS/JSON
\u261C
Unix/C/PHP/JAVA
0x261C
URL-encode
%E2%98%9C

Customize White Left Pointing Index

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

  

How to use White Left Pointing Index Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☜</span>
HTML Code:
<span>&#9756;</span>
HEX Code:
<span>&#x261C;</span>

Add with CSS

.white-left-pointing-index::before {
  content: '\\261C';
}

Set it in JavaScript

document.querySelector('.white-left-pointing-index').textContent = '☜';
copied