Upwards Black Arrow

Shortcodes

Copy and paste codes for Upwards Black Arrow symbol ⬆ to use in your websites, apps, blogs, and more.

Unicode
U+2B06
HTML Code
⬆
HEX Code
⬆
CSS Code
\2B06
JS/JSON
\u2B06
Unix/C/PHP/JAVA
0x2B06
URL-encode
%E2%AC%86
copied

Customize Upwards Black Arrow Symbol

Customize ⬆ symbol as you like and download Upwards Black 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 Upwards Black Arrow symbol in HTML, CSS, and JS?

Insert ⬆ Upwards Black Arrow using HTML

1. Copy-paste Upwards Black Arrow directly:
<span>⬆</span>
2. HTML Decimal Code:
<span>&#11014;</span>
3. Hexadecimal Code:
<span>&#x2B06;</span>
Preview:

Add Upwards Black Arrow symbol with CSS

.upwards-black-arrow::before {
    content: '\\2B06';
}
Preview: Upwards Black Arrow

Upwards Black Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.upwards-black-arrow').textContent = '⬆';
2. Unicode Escape for ⬆:
document.querySelector('.upwards-black-arrow').textContent = '\u2B06';
Preview: