White Nib

Shortcodes

Copy and paste codes for White Nib symbol ✑ to use in your websites, apps, blogs, and more.

Unicode
U+2711
HTML Code
✑
HEX Code
✑
CSS Code
\2711
JS/JSON
\u2711
Unix/C/PHP/JAVA
0x2711
URL-encode
%E2%9C%91
copied

Customize White Nib Symbol

Customize ✑ symbol as you like and download White Nib 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 White Nib symbol in HTML, CSS, and JS?

Insert ✑ White Nib using HTML

1. Copy-paste White Nib directly:
<span>✑</span>
2. HTML Decimal Code:
<span>&#10001;</span>
3. Hexadecimal Code:
<span>&#x2711;</span>
Preview:

Add White Nib symbol with CSS

.white-nib::before {
    content: '\\2711';
}
Preview: White Nib

White Nib JavaScript Code

1. Direct Symbol:
document.querySelector('.white-nib').textContent = '✑';
2. Unicode Escape for ✑:
document.querySelector('.white-nib').textContent = '\u2711';
Preview: