Downwards Triangle-headed Arrow

Shortcodes

Copy and paste codes for Downwards Triangle-headed Arrow symbol ⭣ to use in your websites, apps, blogs, and more.

Unicode
U+2B63
HTML Code
⭣
HEX Code
⭣
CSS Code
\2B63
JS/JSON
\u2B63
Unix/C/PHP/JAVA
0x2B63
URL-encode
%E2%AD%A3
copied

Customize Downwards Triangle-headed Arrow Symbol

Customize ⭣ symbol as you like and download Downwards Triangle-headed Arrow as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Downwards Triangle-headed Arrow symbol in HTML, CSS, and JS?

Insert ⭣ Downwards Triangle-headed Arrow using HTML

1. Copy-paste Downwards Triangle-headed Arrow directly:
<span>⭣</span>
2. HTML Decimal Code:
<span>&#11107;</span>
3. Hexadecimal Code:
<span>&#x2B63;</span>
Preview:

Add Downwards Triangle-headed Arrow symbol with CSS

.downwards-triangle-headed-arrow::before {
    content: '\\2B63';
}
Preview: Downwards Triangle-headed Arrow

Downwards Triangle-headed Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.downwards-triangle-headed-arrow').textContent = '⭣';
2. Unicode Escape for ⭣:
document.querySelector('.downwards-triangle-headed-arrow').textContent = '\u2B63';
Preview: