Arrow Pointing Rightwards Then Curving Upwards

Shortcodes

Copy useful codes for arrow pointing rightwards then curving upwards symbol ⤴ to use in websites, apps, blogs, and docs.

Unicode
U+2934
HTML Code
⤴
HEX Code
⤴
CSS Code
\2934
JS/JSON
\u2934
Unix/C/PHP/JAVA
0x2934
URL-encode
%E2%A4%B4

Customize Arrow Pointing Rightwards Then Curving Upwards

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

  

How to use Arrow Pointing Rightwards Then Curving Upwards Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤴</span>
HTML Code:
<span>&#10548;</span>
HEX Code:
<span>&#x2934;</span>

Add with CSS

.arrow-pointing-rightwards-then-curving-upwards::before {
  content: '\\2934';
}

Set it in JavaScript

document.querySelector('.arrow-pointing-rightwards-then-curving-upwards').textContent = '⤴';
copied