Heavy Round-tipped Rightwards Arrow

Shortcodes

Copy useful codes for heavy round-tipped rightwards arrow symbol ➜ to use in websites, apps, blogs, and docs.

Unicode
U+279C
HTML Code
➜
HEX Code
➜
CSS Code
\279C
JS/JSON
\u279C
Unix/C/PHP/JAVA
0x279C
URL-encode
%E2%9E%9C

Customize Heavy Round-tipped Rightwards Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>➜</span>
HTML Code:
<span>&#10140;</span>
HEX Code:
<span>&#x279C;</span>

Add with CSS

.heavy-round-tipped-rightwards-arrow::before {
  content: '\\279C';
}

Set it in JavaScript

document.querySelector('.heavy-round-tipped-rightwards-arrow').textContent = '➜';
copied