HTML Entity for Lower Right Pencil (✎)

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

What You'll Learn

How to display the Lower Right Pencil (✎) in HTML using various entity methods. The Lower Right Pencil is a Dingbats character showing a pencil pointing downward to the right and is useful for edit actions, notes, comments, and creative or writing-related UI.

This character is part of the Dingbats Unicode block and can be rendered with a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity for this symbol.

⚡ Quick Reference — Lower Right Pencil Entity

Unicode U+270E

Dingbats block

Hex Code ✎

Hexadecimal reference

HTML Code ✎

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+270E
Hex code       ✎
HTML code      ✎
Named entity   (none)
CSS code       \270E
Meaning        Lower right pencil
Related        U+270F pencil, U+2710 upper right, U+270D writing hand
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\270E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x270E;</p>
<p>Symbol (decimal): &#9998;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Lower 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 Lower Right Pencil (✎) in edit and writing contexts:

Large glyph
Edit action✎ Edit profile
Add note✎ Add a comment
Write here✎ Write your answer
Numeric refs&#x270E; &#9998; \270E

🧠 How It Works

1

Hexadecimal Code

&#x270E; uses the Unicode hexadecimal value 270E to display the Lower Right Pencil. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\270E 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+270E sits in Dingbats. Related symbols: U+270F (✏ pencil), U+2710 (upper right), U+270D (✍ writing hand). There is no named HTML entity.

Use Cases

The Lower Right Pencil (✎) is commonly used in:

✏ Edit & write

Indicate edit, write, or modify actions in toolbars, buttons, and menus.

📝 Notes & comments

Mark notes, comments, or annotations in content, docs, and feedback UI.

📄 Documentation

Highlight details, disclaimers, or footnotes in documentation and articles.

📋 Forms & inputs

Suggest editable or fillable fields in forms and input areas.

🎨 Creative tools

Represent drawing, sketching, or design modes in creative applications.

📖 Education

Use in tutorials and worksheets to indicate “write here” or “edit.”

💬 Messaging

Show draft, compose, or reply actions in messaging and collaboration UIs.

💡 Best Practices

Do

  • Pair ✎ with text or aria-label (e.g. “Edit”) for accessibility
  • Use numeric references (&#x270E; or &#9998;) consistently in HTML
  • Pick the right pencil variant for angle and design (U+270E, U+270F, U+2710)
  • Scale with CSS font-size for buttons and icons while keeping clarity
  • Use \270E in CSS content when inserting via pseudo-elements

Don’t

  • Use ✎ as the only label for an action without accessible text
  • Confuse ✎ (U+270E) with ✏ (pencil U+270F) or ✍ (writing hand)
  • Put CSS escape \270E in HTML text nodes
  • Expect a named HTML entity—only numeric codes work for ✎
  • Assume the glyph renders identically across all fonts and platforms

Key Takeaways

1

Three references render ✎ (no named entity)

&#x270E; &#9998;
2

For CSS stylesheets, use the escape in the content property

\270E
3

Unicode U+270E — LOWER RIGHT PENCIL (Dingbats)

4

Common for edit, note, and write actions in UI and content

❓ Frequently Asked Questions

Use &#x270E; (hex), &#9998; (decimal), or \270E in CSS content. All produce ✎. There is no named HTML entity.
U+270E (LOWER RIGHT PENCIL). Dingbats block. Hex 270E, decimal 9998. It depicts a pencil pointing downward to the right, commonly used for edit, note, or write actions.
For edit or write actions in UI, notes and comments indicators, documentation footnotes, forms and input hints, creative tools, educational content, and any context where a pencil or writing icon is needed.
HTML code (&#9998; or &#x270E;) is used in HTML content. The CSS entity (\270E) 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