Upwards Two Headed Arrow

Shortcodes

Copy useful codes for upwards two headed arrow symbol ↟ to use in websites, apps, blogs, and docs.

Unicode
U+219F
HTML Code
↟
HEX Code
↟
CSS Code
\219F
JS/JSON
\u219F
Unix/C/PHP/JAVA
0x219F
URL-encode
%E2%86%9F

Customize Upwards Two Headed Arrow

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

  

How to use Upwards Two Headed Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>↟</span>
HTML Code:
<span>&#8607;</span>
HEX Code:
<span>&#x219F;</span>

Add with CSS

.upwards-two-headed-arrow::before {
  content: '\\219F';
}

Set it in JavaScript

document.querySelector('.upwards-two-headed-arrow').textContent = '↟';
copied