White Up Pointing Index

Shortcodes

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

Unicode
U+261D
HTML Code
☝
HEX Code
☝
CSS Code
\261D
JS/JSON
\u261D
Unix/C/PHP/JAVA
0x261D
URL-encode
%E2%98%9D

Customize White Up Pointing Index

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

  

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

Insert in HTML

1. Direct symbol:
<span>☝</span>
HTML Code:
<span>&#9757;</span>
HEX Code:
<span>&#x261D;</span>

Add with CSS

.white-up-pointing-index::before {
  content: '\\261D';
}

Set it in JavaScript

document.querySelector('.white-up-pointing-index').textContent = '☝';
copied