Rightwards Triple Dash Arrow

Shortcodes

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

Unicode
U+290F
HTML Code
⤏
HEX Code
⤏
CSS Code
\290F
JS/JSON
\u290F
Unix/C/PHP/JAVA
0x290F
URL-encode
%E2%A4%8F

Customize Rightwards Triple Dash Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤏</span>
HTML Code:
<span>&#10511;</span>
HEX Code:
<span>&#x290F;</span>

Add with CSS

.rightwards-triple-dash-arrow::before {
  content: '\\290F';
}

Set it in JavaScript

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