Rightwards Arrow With Plus Below

Shortcodes

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

Unicode
U+2945
HTML Code
⥅
HEX Code
⥅
CSS Code
\2945
JS/JSON
\u2945
Unix/C/PHP/JAVA
0x2945
URL-encode
%E2%A5%85

Customize Rightwards Arrow With Plus Below

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

  

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

Insert in HTML

1. Direct symbol:
<span>⥅</span>
HTML Code:
<span>&#10565;</span>
HEX Code:
<span>&#x2945;</span>

Add with CSS

.rightwards-arrow-with-plus-below::before {
  content: '\\2945';
}

Set it in JavaScript

document.querySelector('.rightwards-arrow-with-plus-below').textContent = '⥅';
copied