Heavy Wide-headed Rightwards Arrow

Shortcodes

Copy useful codes for heavy wide-headed rightwards arrow symbol ➔ to use in websites, apps, blogs, and docs.

Unicode
U+2794
HTML Code
➔
HEX Code
➔
CSS Code
\2794
JS/JSON
\u2794
Unix/C/PHP/JAVA
0x2794
URL-encode
%E2%9E%94

Customize Heavy Wide-headed Rightwards Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>➔</span>
HTML Code:
<span>&#10132;</span>
HEX Code:
<span>&#x2794;</span>

Add with CSS

.heavy-wide-headed-rightwards-arrow::before {
  content: '\\2794';
}

Set it in JavaScript

document.querySelector('.heavy-wide-headed-rightwards-arrow').textContent = '➔';
copied