Downwards Arrow With Tip Rightwards

Shortcodes

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

Unicode
U+21B3
HTML Code
↳
HEX Code
↳
CSS Code
\21B3
JS/JSON
\u21B3
Unix/C/PHP/JAVA
0x21B3
URL-encode
%E2%86%B3

Customize Downwards Arrow With Tip Rightwards

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

  

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

Insert in HTML

1. Direct symbol:
<span>↳</span>
HTML Code:
<span>&#8627;</span>
HEX Code:
<span>&#x21B3;</span>

Add with CSS

.downwards-arrow-with-tip-rightwards::before {
  content: '\\21B3';
}

Set it in JavaScript

document.querySelector('.downwards-arrow-with-tip-rightwards').textContent = '↳';
copied