Back With Leftwards Arrow Above

๐Ÿ”™

Shortcodes

Copy useful codes for back with leftwards arrow above symbol ๐Ÿ”™ to use in websites, apps, blogs, and docs.

Unicode
U+1F519
HTML Code
🔙
HEX Code
🔙
CSS Code
\1F519
JS/JSON
\u1F519
Unix/C/PHP/JAVA
0x1F519
URL-encode
%F0%9F%94%99

Customize Back With Leftwards Arrow Above

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

๐Ÿ”™
  

How to use Back With Leftwards Arrow Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ”™</span>
HTML Code:
<span>&#128281;</span>
HEX Code:
<span>&#x1F519;</span>

Add with CSS

.back-with-leftwards-arrow-above::before {
  content: '\\1F519';
}

Set it in JavaScript

document.querySelector('.back-with-leftwards-arrow-above').textContent = '๐Ÿ”™';
copied