Left Arrow With Circled Plus

Shortcodes

Copy useful codes for left arrow with circled plus symbol ⬲ to use in websites, apps, blogs, and docs.

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

Customize Left Arrow With Circled Plus

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

  

How to use Left Arrow With Circled Plus Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬲</span>
HTML Code:
<span>&#11058;</span>
HEX Code:
<span>&#x2B32;</span>

Add with CSS

.left-arrow-with-circled-plus::before {
  content: '\\2B32';
}

Set it in JavaScript

document.querySelector('.left-arrow-with-circled-plus').textContent = '⬲';
copied