Downwards Heavy Arrow

๐Ÿก‡

Shortcodes

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

Unicode
U+1F847
HTML Code
🡇
HEX Code
🡇
CSS Code
\1F847
JS/JSON
\u1F847
Unix/C/PHP/JAVA
0x1F847
URL-encode
%F0%9F%A1%87

Customize Downwards Heavy Arrow

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

๐Ÿก‡
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿก‡</span>
HTML Code:
<span>&#129095;</span>
HEX Code:
<span>&#x1F847;</span>

Add with CSS

.downwards-heavy-arrow::before {
  content: '\\1F847';
}

Set it in JavaScript

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