Upwards Arrow With Tip Leftwards

Shortcodes

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

Unicode
U+21B0
HTML Code
↰
HEX Code
↰
CSS Code
\21B0
JS/JSON
\u21B0
Unix/C/PHP/JAVA
0x21B0
URL-encode
%E2%86%B0

Customize Upwards Arrow With Tip Leftwards

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

  

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

Insert in HTML

1. Direct symbol:
<span>↰</span>
HTML Code:
<span>&#8624;</span>
HEX Code:
<span>&#x21B0;</span>

Add with CSS

.upwards-arrow-with-tip-leftwards::before {
  content: '\\21B0';
}

Set it in JavaScript

document.querySelector('.upwards-arrow-with-tip-leftwards').textContent = '↰';
copied