Arrow Pointing Downwards Then Curving Leftwards

Shortcodes

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

Unicode
U+2936
HTML Code
⤶
HEX Code
⤶
CSS Code
\2936
JS/JSON
\u2936
Unix/C/PHP/JAVA
0x2936
URL-encode
%E2%A4%B6

Customize Arrow Pointing Downwards Then Curving Leftwards

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤶</span>
HTML Code:
<span>&#10550;</span>
HEX Code:
<span>&#x2936;</span>

Add with CSS

.arrow-pointing-downwards-then-curving-leftwards::before {
  content: '\\2936';
}

Set it in JavaScript

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