Left Arrow With Small Circle

Shortcodes

Copy useful codes for left arrow with small circle symbol ⬰ to use in websites, apps, blogs, and docs.

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

Customize Left Arrow With Small Circle

Customize ⬰, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Left Arrow With Small Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬰</span>
HTML Code:
<span>&#11056;</span>
HEX Code:
<span>&#x2B30;</span>

Add with CSS

.left-arrow-with-small-circle::before {
  content: '\\2B30';
}

Set it in JavaScript

document.querySelector('.left-arrow-with-small-circle').textContent = '⬰';
copied