Right Double Arrow With Rounded Head

Shortcodes

Copy useful codes for right double arrow with rounded head symbol ⥰ to use in websites, apps, blogs, and docs.

Unicode
U+2970
HTML Code
⥰
HEX Code
⥰
CSS Code
\2970
JS/JSON
\u2970
Unix/C/PHP/JAVA
0x2970
URL-encode
%E2%A5%B0

Customize Right Double Arrow With Rounded Head

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

  

How to use Right Double Arrow With Rounded Head Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⥰</span>
HTML Code:
<span>&#10608;</span>
HEX Code:
<span>&#x2970;</span>

Add with CSS

.right-double-arrow-with-rounded-head::before {
  content: '\\2970';
}

Set it in JavaScript

document.querySelector('.right-double-arrow-with-rounded-head').textContent = '⥰';
copied