Downwards Arrow With Tip Leftwards

Shortcodes

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

Unicode
U+21B2
HTML Code
↲
HEX Code
↲
CSS Code
\21B2
JS/JSON
\u21B2
Unix/C/PHP/JAVA
0x21B2
URL-encode
%E2%86%B2

Customize Downwards Arrow With Tip Leftwards

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

  

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

Insert in HTML

1. Direct symbol:
<span>↲</span>
HTML Code:
<span>&#8626;</span>
HEX Code:
<span>&#x21B2;</span>

Add with CSS

.downwards-arrow-with-tip-leftwards::before {
  content: '\\21B2';
}

Set it in JavaScript

document.querySelector('.downwards-arrow-with-tip-leftwards').textContent = '↲';
copied