Rightwards Heavy Arrow

๐Ÿก†

Shortcodes

Copy useful codes for rightwards heavy arrow symbol ๐Ÿก† to use in websites, apps, blogs, and docs.

Unicode
U+1F846
HTML Code
🡆
HEX Code
🡆
CSS Code
\1F846
JS/JSON
\u1F846
Unix/C/PHP/JAVA
0x1F846
URL-encode
%F0%9F%A1%86

Customize Rightwards Heavy Arrow

Customize ๐Ÿก†, download it as SVG or PNG, or copy the generated HTML snippet.

๐Ÿก†
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿก†</span>
HTML Code:
<span>&#129094;</span>
HEX Code:
<span>&#x1F846;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.rightwards-heavy-arrow').textContent = '๐Ÿก†';
copied