Three Rightwards Arrows

Shortcodes

Copy useful codes for three rightwards arrows symbol ⇶ to use in websites, apps, blogs, and docs.

Unicode
U+21F6
HTML Code
⇶
HEX Code
⇶
CSS Code
\21F6
JS/JSON
\u21F6
Unix/C/PHP/JAVA
0x21F6
URL-encode
%E2%87%B6

Customize Three Rightwards Arrows

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

  

How to use Three Rightwards Arrows Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇶</span>
HTML Code:
<span>&#8694;</span>
HEX Code:
<span>&#x21F6;</span>

Add with CSS

.three-rightwards-arrows::before {
  content: '\\21F6';
}

Set it in JavaScript

document.querySelector('.three-rightwards-arrows').textContent = '⇶';
copied