White Down Pointing Index

Shortcodes

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

Unicode
U+261F
HTML Code
☟
HEX Code
☟
CSS Code
\261F
JS/JSON
\u261F
Unix/C/PHP/JAVA
0x261F
URL-encode
%E2%98%9F

Customize White Down Pointing Index

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

  

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

Insert in HTML

1. Direct symbol:
<span>☟</span>
HTML Code:
<span>&#9759;</span>
HEX Code:
<span>&#x261F;</span>

Add with CSS

.white-down-pointing-index::before {
  content: '\\261F';
}

Set it in JavaScript

document.querySelector('.white-down-pointing-index').textContent = '☟';
copied