Leftwards Arrow With Plus Below

Shortcodes

Copy useful codes for leftwards arrow with plus below symbol ⥆ to use in websites, apps, blogs, and docs.

Unicode
U+2946
HTML Code
⥆
HEX Code
⥆
CSS Code
\2946
JS/JSON
\u2946
Unix/C/PHP/JAVA
0x2946
URL-encode
%E2%A5%86

Customize Leftwards Arrow With Plus Below

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

  

How to use Leftwards Arrow With Plus Below Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥆</span>
HTML Code:
<span>&#10566;</span>
HEX Code:
<span>&#x2946;</span>

Add with CSS

.leftwards-arrow-with-plus-below::before {
  content: '\\2946';
}

Set it in JavaScript

document.querySelector('.leftwards-arrow-with-plus-below').textContent = '⥆';
copied