Left Right White Arrow

Shortcodes

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

Unicode
U+2B04
HTML Code
⬄
HEX Code
⬄
CSS Code
\2B04
JS/JSON
\u2B04
Unix/C/PHP/JAVA
0x2B04
URL-encode
%E2%AC%84
copied

Customize Left Right White Arrow Symbol

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

Insert ⬄ Left Right White Arrow using HTML

1. Copy-paste Left Right White Arrow directly:
<span>⬄</span>
2. HTML Decimal Code:
<span>&#11012;</span>
3. Hexadecimal Code:
<span>&#x2B04;</span>
Preview:

Add Left Right White Arrow symbol with CSS

.left-right-white-arrow::before {
    content: '\\2B04';
}
Preview: Left Right White Arrow

Left Right White Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.left-right-white-arrow').textContent = '⬄';
2. Unicode Escape for ⬄:
document.querySelector('.left-right-white-arrow').textContent = '\u2B04';
Preview: