Right Arrow With Circled Plus

Shortcodes

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

Unicode
U+27F4
HTML Code
⟴
HEX Code
⟴
CSS Code
\27F4
JS/JSON
\u27F4
Unix/C/PHP/JAVA
0x27F4
URL-encode
%E2%9F%B4

Customize Right Arrow With Circled Plus

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟴</span>
HTML Code:
<span>&#10228;</span>
HEX Code:
<span>&#x27F4;</span>

Add with CSS

.right-arrow-with-circled-plus::before {
  content: '\\27F4';
}

Set it in JavaScript

document.querySelector('.right-arrow-with-circled-plus').textContent = '⟴';
copied