Upwards Arrow With Tip Rightwards

Shortcodes

Copy useful codes for upwards arrow with tip rightwards symbol ↱ to use in websites, apps, blogs, and docs.

Unicode
U+21B1
HTML Code
↱
HEX Code
↱
CSS Code
\21B1
JS/JSON
\u21B1
Unix/C/PHP/JAVA
0x21B1
URL-encode
%E2%86%B1

Customize Upwards Arrow With Tip Rightwards

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

  

How to use Upwards Arrow With Tip Rightwards Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>↱</span>
HTML Code:
<span>&#8625;</span>
HEX Code:
<span>&#x21B1;</span>

Add with CSS

.upwards-arrow-with-tip-rightwards::before {
  content: '\\21B1';
}

Set it in JavaScript

document.querySelector('.upwards-arrow-with-tip-rightwards').textContent = '↱';
copied