Left Right Black Arrow

Shortcodes

Copy and paste codes for Left Right Black Arrow symbol ⬌ to use in your websites, apps, blogs, and more.

Unicode
U+2B0C
HTML Code
⬌
HEX Code
⬌
CSS Code
\2B0C
JS/JSON
\u2B0C
Unix/C/PHP/JAVA
0x2B0C
URL-encode
%E2%AC%8C
copied

Customize Left Right Black Arrow Symbol

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

Insert ⬌ Left Right Black Arrow using HTML

1. Copy-paste Left Right Black Arrow directly:
<span>⬌</span>
2. HTML Decimal Code:
<span>&#11020;</span>
3. Hexadecimal Code:
<span>&#x2B0C;</span>
Preview:

Add Left Right Black Arrow symbol with CSS

.left-right-black-arrow::before {
    content: '\\2B0C';
}
Preview: Left Right Black Arrow

Left Right Black Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.left-right-black-arrow').textContent = '⬌';
2. Unicode Escape for ⬌:
document.querySelector('.left-right-black-arrow').textContent = '\u2B0C';
Preview: