Writing Hand

Shortcodes

Copy and paste codes for Writing Hand symbol ✍ to use in your websites, apps, blogs, and more.

Unicode
U+270D
HTML Code
✍
HEX Code
✍
CSS Code
\270D
JS/JSON
\u270D
Unix/C/PHP/JAVA
0x270D
URL-encode
%E2%9C%8D
copied

Customize Writing Hand Symbol

Customize ✍ symbol as you like and download Writing Hand as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Writing Hand symbol in HTML, CSS, and JS?

Insert ✍ Writing Hand using HTML

1. Copy-paste Writing Hand directly:
<span>✍</span>
2. HTML Decimal Code:
<span>&#9997;</span>
3. Hexadecimal Code:
<span>&#x270D;</span>
Preview:

Add Writing Hand symbol with CSS

.writing-hand::before {
    content: '\\270D';
}
Preview: Writing Hand

Writing Hand JavaScript Code

1. Direct Symbol:
document.querySelector('.writing-hand').textContent = '✍';
2. Unicode Escape for ✍:
document.querySelector('.writing-hand').textContent = '\u270D';
Preview: