Upper Right Pencil

Shortcodes

Copy and paste codes for Upper Right Pencil symbol ✐ to use in your websites, apps, blogs, and more.

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

Customize Upper Right Pencil Symbol

Customize ✐ symbol as you like and download Upper Right Pencil 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 Upper Right Pencil symbol in HTML, CSS, and JS?

Insert ✐ Upper Right Pencil using HTML

1. Copy-paste Upper Right Pencil directly:
<span>✐</span>
2. HTML Decimal Code:
<span>&#10000;</span>
3. Hexadecimal Code:
<span>&#x2710;</span>
Preview:

Add Upper Right Pencil symbol with CSS

.upper-right-pencil::before {
    content: '\\2710';
}
Preview: Upper Right Pencil

Upper Right Pencil JavaScript Code

1. Direct Symbol:
document.querySelector('.upper-right-pencil').textContent = '✐';
2. Unicode Escape for ✐:
document.querySelector('.upper-right-pencil').textContent = '\u2710';
Preview: