Upwards Triple Arrow

Shortcodes

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

Unicode
U+290A
HTML Code
⤊
HEX Code
⤊
CSS Code
\290A
JS/JSON
\u290A
Unix/C/PHP/JAVA
0x290A
URL-encode
%E2%A4%8A

Customize Upwards Triple Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤊</span>
HTML Code:
<span>&#10506;</span>
HEX Code:
<span>&#x290A;</span>

Add with CSS

.upwards-triple-arrow::before {
  content: '\\290A';
}

Set it in JavaScript

document.querySelector('.upwards-triple-arrow').textContent = '⤊';
copied