Rightwards Arrow With Corner Downwards

Shortcodes

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

Unicode
U+21B4
HTML Code
↴
HEX Code
↴
CSS Code
\21B4
JS/JSON
\u21B4
Unix/C/PHP/JAVA
0x21B4
URL-encode
%E2%86%B4

Customize Rightwards Arrow With Corner Downwards

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

  

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

Insert in HTML

1. Direct symbol:
<span>↴</span>
HTML Code:
<span>&#8628;</span>
HEX Code:
<span>&#x21B4;</span>

Add with CSS

.rightwards-arrow-with-corner-downwards::before {
  content: '\\21B4';
}

Set it in JavaScript

document.querySelector('.rightwards-arrow-with-corner-downwards').textContent = '↴';
copied