Black Left Pointing Index

Shortcodes

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

Unicode
U+261A
HTML Code
☚
HEX Code
☚
CSS Code
\261A
JS/JSON
\u261A
Unix/C/PHP/JAVA
0x261A
URL-encode
%E2%98%9A

Customize Black Left Pointing Index

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

  

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

Insert in HTML

1. Direct symbol:
<span>☚</span>
HTML Code:
<span>&#9754;</span>
HEX Code:
<span>&#x261A;</span>

Add with CSS

.black-left-pointing-index::before {
  content: '\\261A';
}

Set it in JavaScript

document.querySelector('.black-left-pointing-index').textContent = '☚';
copied