Rightwards Triple Arrow

Shortcodes

Copy useful codes for rightwards triple arrow symbol ⇛ to use in websites, apps, blogs, and docs.

Unicode
U+21DB
HTML Code
⇛
HEX Code
⇛
CSS Code
\21DB
JS/JSON
\u21DB
Unix/C/PHP/JAVA
0x21DB
URL-encode
%E2%87%9B

Customize Rightwards Triple Arrow

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

  

How to use Rightwards Triple Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇛</span>
HTML Code:
<span>&#8667;</span>
HEX Code:
<span>&#x21DB;</span>

Add with CSS

.rightwards-triple-arrow::before {
  content: '\\21DB';
}

Set it in JavaScript

document.querySelector('.rightwards-triple-arrow').textContent = '⇛';
copied