HTML Entity for Black Nib (✒)

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

What You'll Learn

How to display Black Nib (✒) in HTML and CSS. This character is U+2712 in the Dingbats block (U+2700–U+27BF), approved in Unicode 1.1 (1993). Its Unicode name is BLACK NIB—the part of a quill, dip pen, fountain pen, or stylus that deposits ink on the writing surface.

There is no named HTML entity for U+2712. Use ✒ or ✒ in markup, or \2712 in stylesheet content. The symbol suits writing themes, creative design, stationery branding, and editorial content. Pair decorative glyphs with visible text or aria-label when they convey meaning.

⚡ Quick Reference — Black Nib

Unicode U+2712

Dingbats (U+2700–U+27BF)

Hex Code ✒

Hexadecimal reference

HTML Code ✒

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2712
Hex code       ✒
HTML code      ✒
Named entity   —
CSS code       \2712
1

Complete HTML Example

This example shows U+2712 using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2712";
  }
 </style>
</head>
<body>
<p>Black Nib using Hexa Decimal: &#x2712;</p>
<p>Black Nib using HTML Code: &#10002;</p>
<p id="point">Black Nib using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2712 is widely supported in modern browsers; hand glyph artwork varies by typeface:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the glyph at different sizes and beside related writing Dingbats (font-dependent):

Large glyph
Writing theme ✒ Author’s note  |  ✎ Draft
Nib pair (U+2712 & U+2710) ✒ ✐
Caption U+2712 is BLACK NIB; U+2710 is WHITE NIB in Dingbats.
Monospace refs &#x2712; &#10002; \2712

🧠 How It Works

1

Hexadecimal Code

&#x2712; references code point U+2712 using hex digits 2712 after the #x prefix.

HTML markup
2

Decimal HTML Code

&#10002; is the decimal equivalent (10002) for the same Black Nib character.

HTML markup
3

CSS Entity

\2712 is the CSS escape for U+2712, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+2712.

Use Cases

The Black Nib (✒) is commonly used for:

✍ Writing themes

Blogs, author pages, writing apps, and content about authorship.

🎨 Creative design

Headers, logos, and decorative accents for creative or editorial projects.

🎨 Digital art

Art apps, design tools, and creative interfaces.

📝 Stationery branding

Notepads, journals, paper goods, and writing-supply brands.

📄 Editorial content

Publishing, magazines, newsletters, and literary content.

💬 Social & messaging

Posts about writing, signing documents, or creative work.

♿ Accessibility

Pair ✒ with text or ARIA when used for decorative or thematic markers.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+2712
  • Pair ✒ with ✐ (white nib) or ✎ (pencil) for cohesive writing-themed design
  • Scale with font-size for headers, icons, or subtle accents
  • Choose fonts that support the Dingbats block (U+2700–U+27BF)
  • Use \2712 only inside CSS content, not inside HTML text nodes
  • Add aria-hidden="true" when purely decorative, or text for meaningful markers

Don’t

  • Confuse U+2712 with U+2710 (white nib) or emoji pen characters (different code points)
  • Rely on ✒ alone to communicate meaning in critical UI
  • Assume every font renders Dingbats crisply at small sizes
  • Use decorative glyphs as the only cue for important actions
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x2712; &#10002;
2

CSS content escape

\2712
3

U+2712 is a black nib; pairs with White Nib U+2710

4

Dingbats block U+2700–U+27BF; no named HTML entity

5

Pair ornamental glyphs with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x2712; (hex), &#10002; (decimal), or \2712 in CSS content. There is no named entity; all valid methods render ✒.
U+2712 (hex 2712, decimal 10002). Dingbats (U+2700–U+27BF). Unicode name BLACK NIB.
For writing themes, creative design, digital art, stationery branding, editorial content, and authorship-related UI.
Numeric references belong in HTML. The \2712 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x2712;, &#10002;, or \2712 in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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