Left Arrow With Small Circle

Shortcodes

Copy and paste codes for Left Arrow With Small Circle symbol ⬰ to use in your websites, apps, blogs, and more.

Unicode
U+2B30
HTML Code
⬰
HEX Code
⬰
CSS Code
\2B30
JS/JSON
\u2B30
Unix/C/PHP/JAVA
0x2B30
URL-encode
%E2%AC%B0
copied

Customize Left Arrow With Small Circle Symbol

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

Insert ⬰ Left Arrow With Small Circle using HTML

1. Copy-paste Left Arrow With Small Circle directly:
<span>⬰</span>
2. HTML Decimal Code:
<span>&#11056;</span>
3. Hexadecimal Code:
<span>&#x2B30;</span>
Preview:

Add Left Arrow With Small Circle symbol with CSS

.left-arrow-with-small-circle::before {
    content: '\\2B30';
}
Preview: Left Arrow With Small Circle

Left Arrow With Small Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.left-arrow-with-small-circle').textContent = '⬰';
2. Unicode Escape for ⬰:
document.querySelector('.left-arrow-with-small-circle').textContent = '\u2B30';
Preview: