Upper Right Pencil

Shortcodes

Copy useful codes for upper right pencil symbol ✐ to use in websites, apps, blogs, and docs.

Unicode
U+2710
HTML Code
✐
HEX Code
✐
CSS Code
\2710
JS/JSON
\u2710
Unix/C/PHP/JAVA
0x2710
URL-encode
%E2%9C%90

Customize Upper Right Pencil

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

  

How to use Upper Right Pencil Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✐</span>
HTML Code:
<span>&#10000;</span>
HEX Code:
<span>&#x2710;</span>

Add with CSS

.upper-right-pencil::before {
  content: '\\2710';
}

Set it in JavaScript

document.querySelector('.upper-right-pencil').textContent = '✐';
copied