HTML Entity for White Nib (✑)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2711

What You'll Learn

How to display the White Nib symbol (✑) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2711 (WHITE NIB) in the Dingbats block (U+2700–U+27BF)—an outline fountain-pen nib icon.

Render it with ✑, ✑, or CSS escape \2711. There is no named HTML entity. Do not confuse ✑ with ✒ (black nib) or ✏ (pencil).

⚡ Quick Reference — White Nib

Unicode U+2711

Dingbats

Hex Code ✑

Hexadecimal reference

HTML Code ✑

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2711
Hex code       ✑
HTML code      ✑
Named entity   (none)
CSS code       \2711
Meaning        White nib (fountain pen tip)
Related        U+2712 = ✒ (black nib)
               U+270F = ✏ (pencil)
               U+270E = ✎ (lower right pencil)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing White Nib (✑) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #nib:after{
   content: "\2711";
  }
 </style>
</head>
<body>
<p>White Nib (hex): &#x2711;</p>
<p>White Nib (decimal): &#10001;</p>
<p id="nib">White Nib (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+2711 is supported in modern browsers when the font includes Dingbats glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See White Nib (✑) in context:

Large glyph
Write action✑ Write
Nib pair✑ ✒
Not the same as✏ (U+270F, pencil)  |  ✒ (U+2712, black nib)
Numeric refs&#x2711; &#10001; \2711

🧠 How It Works

1

Hexadecimal Code

&#x2711; uses the Unicode hexadecimal value 2711 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10001; uses the decimal Unicode value 10001 to display the same character. A common method for symbol characters in HTML.

HTML markup
3

CSS Entity

\2711 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2711 is the white nib in Dingbats. Not the same as ✒ (black nib) or ✏ (pencil).

Use Cases

White Nib (✑) is commonly used in:

✏ Writing Icons

Text editors, CMS tools, and compose/write buttons.

🖋 Fountain Pens

Stationery sites, pen products, and luxury writing brands.

🎨 Creative Design

Logos, portfolios, and content about authorship or craft.

📝 Calligraphy

Handwriting guides, calligraphy tutorials, and artistic writing.

📝 Stationery Retail

Office supply stores and writing-tool e-commerce pages.

📰 Blog & Editorial

Blog headers, journalism sections, and writer-focused content.

♿ Accessibility

Pair ✑ with visible text like “Write” or aria-label; do not rely on the glyph alone.

💡 Best Practices

Do

  • Use ✑ for an outline nib; use ✒ for the filled black nib variant
  • Pair the nib glyph with accessible text like “Write” or aria-label
  • Pick one numeric style (hex or decimal) per project for consistency
  • Use fonts that support Dingbats characters
  • Test rendering across browsers and devices

Don’t

  • Confuse ✑ (white nib) with ✒ (black nib) or ✏ (pencil)
  • Use the nib glyph as the only cue for critical edit/write actions
  • Mix entity styles randomly in one file
  • Use CSS escape \2711 inside HTML markup
  • Expect a named HTML entity—none exists for ✑

Key Takeaways

1

Type ✑ directly, or use hex/decimal references

&#x2711; &#10001;
2

For CSS stylesheets, use the escape in the content property

\2711
3

Unicode U+2711 — WHITE NIB (Dingbats)

4

U+2711/U+2712 are white/black nib pairs in Dingbats

❓ Frequently Asked Questions

Use &#x2711; (hex), &#10001; (decimal), or \2711 in CSS content. There is no named HTML entity. In UTF-8 you can also type ✑ directly.
U+2711 (WHITE NIB). Dingbats block U+2700–U+27BF. Hex 2711, decimal 10001.
For writing icons, fountain pen content, calligraphy pages, stationery sites, blog/editor UI, and creative design representing penmanship.
HTML entities (&#10001; or &#x2711;) go directly in markup. The CSS escape \2711 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Dingbats like ✑ use numeric codes. Use &#10001; or &#x2711; in HTML, or \2711 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, punctuation, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful