Writing Hand

Shortcodes

Copy useful codes for writing hand symbol ✍ to use in websites, apps, blogs, and docs.

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

Customize Writing Hand

Customize ✍, download it as SVG or PNG, or copy the generated HTML snippet.

  

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

Insert in HTML

1. Direct symbol:
<span>✍</span>
HTML Code:
<span>&#9997;</span>
HEX Code:
<span>&#x270D;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.writing-hand').textContent = '✍';
copied