HTML Entity for Upper Right Pencil (✐)

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

What You'll Learn

How to display the Upper Right Pencil (✐) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2710 (WHITE NIB) in the Dingbats block (U+2700–U+27BF)—commonly used as a pencil or writing icon for notes, annotations, editing tools, and creative content.

Render it with ✐, ✐, or CSS escape \2710. There is no named HTML entity. Compare ✎ (Lower Right Pencil, U+270E) and ✏ (Pencil, U+270F) for related Dingbats writing symbols.

⚡ Quick Reference — Upper Right Pencil

Unicode U+2710

Dingbats block

Hex Code ✐

Hexadecimal reference

HTML Code ✐

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2710
Hex code       ✐
HTML code      ✐
Named entity   (none)
CSS code       \2710
Official name  WHITE NIB
Related        U+270E = Lower right pencil; U+270F = Pencil
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing the Upper Right Pencil (✐) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2710";
  }
 </style>
</head>
<body>
<p>Upper Right Pencil (hex): &#x2710;</p>
<p>Upper Right Pencil (decimal): &#10000;</p>
<p id="point">Upper Right Pencil (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Upper Right Pencil (✐) is supported in modern browsers when the font includes Dingbats glyphs:

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

👀 Live Preview

See the Upper Right Pencil (✐) in UI and content contexts:

Large glyph
Edit action✐ Edit note
AnnotationAdd comment ✐
vs lower right✐ upper   ✎ lower
Numeric refs&#x2710; &#10000; \2710

🧠 How It Works

1

Hexadecimal Code

&#x2710; uses the Unicode hexadecimal value 2710 to display the Upper Right Pencil. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10000; uses the decimal Unicode value 10000 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\2710 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+2710 (WHITE NIB) in Dingbats. Related: U+270E (lower right pencil), U+270F (pencil). There is no named HTML entity.

Use Cases

The Upper Right Pencil (✐) is commonly used in:

📝 Note icons

Annotation tools and writing indicators for note-taking functionality.

✎ Writing indicators

Text editors and content creation tools showing write or compose actions.

💬 Annotation features

Comment systems and editing tools that need a pencil icon for user interaction.

💻 Editing tools

CMS interfaces and text editing UIs with edit buttons and toolbars.

🎨 Creative content

Design elements and visual content using pencil symbols for artistic purposes.

📖 Educational content

Learning platforms and tutorials indicating writing or note-taking activities.

💡 Best Practices

Do

  • Pair ✐ with text or aria-label (e.g. “Edit”) for accessibility
  • Use numeric references (&#x2710; or &#10000;) consistently in HTML
  • Pick the right writing symbol for your UI (✐, ✎, or ✏)
  • Verify Dingbats glyph support in your target fonts and devices
  • Use \2710 in CSS content when inserting via pseudo-elements

Don’t

  • Confuse ✐ (U+2710, white nib) with ✏ (U+270F, pencil ✏) or ✎ (lower right pencil)
  • Put CSS escape \2710 in HTML text nodes
  • Expect a named HTML entity—only numeric codes work for ✐
  • Use the symbol as the only cue for edit actions without a visible label
  • Assume decorative fonts include all Dingbats characters

Key Takeaways

1

Three references render ✐ (no named entity)

&#x2710; &#10000;
2

For CSS stylesheets, use the escape in the content property

\2710
3

Unicode U+2710 — WHITE NIB (Dingbats)

4

Related writing symbols: U+270E (lower right), U+270F (pencil)

❓ Frequently Asked Questions

Use &#x2710; (hex), &#10000; (decimal), or \2710 in CSS content. All produce ✐. There is no named HTML entity.
U+2710 (WHITE NIB). Dingbats block (U+2700–U+27BF). Hex 2710, decimal 10000. Commonly used as a pencil or writing icon for notes, annotations, and edit actions.
For note icons, writing indicators, annotation features, editing tools, creative content, and any UI that needs a pencil or nib symbol for write or edit actions.
HTML code (&#10000; or &#x2710;) is used in HTML content. The CSS entity (\2710) is used in CSS, e.g. in the content property of ::before or ::after. Both produce ✐ but in different contexts.
Named HTML entities are typically reserved for ASCII, Latin-1, and some common symbols. Dingbats like ✐ use numeric codes (hex or decimal) because they are part of specialized Unicode blocks.

Explore More HTML Entities!

Discover 1500+ HTML character references — Dingbats, symbols, 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