Leftwards Black Arrow

Shortcodes

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

Unicode
U+2B05
HTML Code
⬅
HEX Code
⬅
CSS Code
\2B05
JS/JSON
\u2B05
Unix/C/PHP/JAVA
0x2B05
URL-encode
%E2%AC%85
copied

Customize Leftwards Black Arrow Symbol

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

Insert ⬅ Leftwards Black Arrow using HTML

1. Copy-paste Leftwards Black Arrow directly:
<span>⬅</span>
2. HTML Decimal Code:
<span>&#11013;</span>
3. Hexadecimal Code:
<span>&#x2B05;</span>
Preview:

Add Leftwards Black Arrow symbol with CSS

.leftwards-black-arrow::before {
    content: '\\2B05';
}
Preview: Leftwards Black Arrow

Leftwards Black Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.leftwards-black-arrow').textContent = '⬅';
2. Unicode Escape for ⬅:
document.querySelector('.leftwards-black-arrow').textContent = '\u2B05';
Preview: