White Right Pointing Index

Shortcodes

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

Unicode
U+261E
HTML Code
☞
HEX Code
☞
CSS Code
\261E
JS/JSON
\u261E
Unix/C/PHP/JAVA
0x261E
URL-encode
%E2%98%9E

Customize White Right Pointing Index

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

  

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

Insert in HTML

1. Direct symbol:
<span>☞</span>
HTML Code:
<span>&#9758;</span>
HEX Code:
<span>&#x261E;</span>

Add with CSS

.white-right-pointing-index::before {
  content: '\\261E';
}

Set it in JavaScript

document.querySelector('.white-right-pointing-index').textContent = '☞';
copied