Arrow Pointing Downwards Then Curving Rightwards

Shortcodes

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

Unicode
U+2937
HTML Code
⤷
HEX Code
⤷
CSS Code
\2937
JS/JSON
\u2937
Unix/C/PHP/JAVA
0x2937
URL-encode
%E2%A4%B7

Customize Arrow Pointing Downwards Then Curving Rightwards

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤷</span>
HTML Code:
<span>&#10551;</span>
HEX Code:
<span>&#x2937;</span>

Add with CSS

.arrow-pointing-downwards-then-curving-rightwards::before {
  content: '\\2937';
}

Set it in JavaScript

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