Heavy Rightwards Arrow

Shortcodes

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

Unicode
U+2799
HTML Code
➙
HEX Code
➙
CSS Code
\2799
JS/JSON
\u2799
Unix/C/PHP/JAVA
0x2799
URL-encode
%E2%9E%99

Customize Heavy Rightwards Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>➙</span>
HTML Code:
<span>&#10137;</span>
HEX Code:
<span>&#x2799;</span>

Add with CSS

.heavy-rightwards-arrow::before {
  content: '\\2799';
}

Set it in JavaScript

document.querySelector('.heavy-rightwards-arrow').textContent = '➙';
copied