Left Arrow With Circled Plus

Shortcodes

Copy and paste codes for Left Arrow With Circled Plus symbol ⬲ to use in your websites, apps, blogs, and more.

Unicode
U+2B32
HTML Code
⬲
HEX Code
⬲
CSS Code
\2B32
JS/JSON
\u2B32
Unix/C/PHP/JAVA
0x2B32
URL-encode
%E2%AC%B2
copied

Customize Left Arrow With Circled Plus Symbol

Customize ⬲ symbol as you like and download Left Arrow With Circled Plus 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 Arrow With Circled Plus symbol in HTML, CSS, and JS?

Insert ⬲ Left Arrow With Circled Plus using HTML

1. Copy-paste Left Arrow With Circled Plus directly:
<span>⬲</span>
2. HTML Decimal Code:
<span>&#11058;</span>
3. Hexadecimal Code:
<span>&#x2B32;</span>
Preview:

Add Left Arrow With Circled Plus symbol with CSS

.left-arrow-with-circled-plus::before {
    content: '\\2B32';
}
Preview: Left Arrow With Circled Plus

Left Arrow With Circled Plus JavaScript Code

1. Direct Symbol:
document.querySelector('.left-arrow-with-circled-plus').textContent = '⬲';
2. Unicode Escape for ⬲:
document.querySelector('.left-arrow-with-circled-plus').textContent = '\u2B32';
Preview: