Rightwards Two Headed Arrow

Shortcodes

Copy and paste codes for Rightwards Two Headed Arrow symbol ↠ to use in your websites, apps, blogs, and more.

Unicode
U+21A0
HTML Code
↠
HEX Code
↠
CSS Code
\21A0
JS/JSON
\u21A0
Unix/C/PHP/JAVA
0x21A0
URL-encode
%E2%86%A0
copied

Customize Rightwards Two Headed Arrow Symbol

Customize ↠ symbol as you like and download Rightwards Two Headed Arrow as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Rightwards Two Headed Arrow symbol in HTML, CSS, and JS?

Insert ↠ Rightwards Two Headed Arrow using HTML

1. Copy-paste Rightwards Two Headed Arrow directly:
<span>↠</span>
2. HTML Decimal Code:
<span>&#8608;</span>
3. Hexadecimal Code:
<span>&#x21A0;</span>
Preview:

Add Rightwards Two Headed Arrow symbol with CSS

.rightwards-two-headed-arrow::before {
    content: '\\21A0';
}
Preview: Rightwards Two Headed Arrow

Rightwards Two Headed Arrow JavaScript Code

1. Direct Symbol:
document.querySelector('.rightwards-two-headed-arrow').textContent = '↠';
2. Unicode Escape for ↠:
document.querySelector('.rightwards-two-headed-arrow').textContent = '\u21A0';
Preview: