Down Arrowhead

Shortcodes

Copy useful codes for down arrowhead symbol ⌄ to use in websites, apps, blogs, and docs.

Unicode
U+2304
HTML Code
⌄
HEX Code
⌄
CSS Code
\2304
JS/JSON
\u2304
Unix/C/PHP/JAVA
0x2304
URL-encode
%E2%8C%84

Customize Down Arrowhead

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

  

How to use Down Arrowhead Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌄</span>
HTML Code:
<span>&#8964;</span>
HEX Code:
<span>&#x2304;</span>

Add with CSS

.down-arrowhead::before {
  content: '\\2304';
}

Set it in JavaScript

document.querySelector('.down-arrowhead').textContent = '⌄';
copied