Arrow Pointing Rightwards Then Curving Downwards

Shortcodes

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

Unicode
U+2935
HTML Code
⤵
HEX Code
⤵
CSS Code
\2935
JS/JSON
\u2935
Unix/C/PHP/JAVA
0x2935
URL-encode
%E2%A4%B5

Customize Arrow Pointing Rightwards Then Curving Downwards

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤵</span>
HTML Code:
<span>&#10549;</span>
HEX Code:
<span>&#x2935;</span>

Add with CSS

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

Set it in JavaScript

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