White Nib

Shortcodes

Copy useful codes for white nib symbol ✑ to use in websites, apps, blogs, and docs.

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

Customize White Nib

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

  

How to use White Nib Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✑</span>
HTML Code:
<span>&#10001;</span>
HEX Code:
<span>&#x2711;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.white-nib').textContent = '✑';
copied