Left Writing Hand

๐Ÿ–Ž

Shortcodes

Copy useful codes for left writing hand symbol ๐Ÿ–Ž to use in websites, apps, blogs, and docs.

Unicode
U+1F58E
HTML Code
🖎
HEX Code
🖎
CSS Code
\1F58E
JS/JSON
\u1F58E
Unix/C/PHP/JAVA
0x1F58E
URL-encode
%F0%9F%96%8E

Customize Left Writing Hand

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

๐Ÿ–Ž
  

How to use Left Writing Hand Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ–Ž</span>
HTML Code:
<span>&#128398;</span>
HEX Code:
<span>&#x1F58E;</span>

Add with CSS

.left-writing-hand::before {
  content: '\\1F58E';
}

Set it in JavaScript

document.querySelector('.left-writing-hand').textContent = '๐Ÿ–Ž';
copied