HTML Entity for Staff Hermes (⚚)

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

What You'll Learn

How to display Staff Hermes (⚚) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+269A (STAFF OF HERMES) in the Miscellaneous Symbols block (U+2600–U+26FF)—the staff associated with Hermes in Greek mythology.

Render it with ⚚, ⚚, or CSS \269A. There is no named HTML entity. Do not confuse ⚚ with Caduceus ☤ (U+2624) or Staff of Aesculapius ⚕ (U+2695).

⚡ Quick Reference — Staff Hermes

Unicode U+269A

Miscellaneous Symbols

Hex Code ⚚

Hexadecimal reference

HTML Code ⚚

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+269A
Hex code       ⚚
HTML code      ⚚
Named entity   (none)
CSS code       \269A
Meaning        Staff of Hermes
Not the same   U+2624 = Caduceus (☤)
               U+2695 = Staff of Aesculapius (⚕)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing ⚚ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\269A";
  }
 </style>
</head>
<body>
<p>Mythology (hex): &#x269A; Hermes</p>
<p>Mythology (decimal): &#9882; Greek</p>
<p id="point">Mythology (CSS): Classics</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Staff Hermes (⚚) renders in modern browsers when fonts include Miscellaneous Symbols glyphs:

Chrome1+
Firefox1+
Safari3.1+
Edge12+
Opera4+
Android4.4+
iOS Safari3.2+

👀 Live Preview

See the staff of Hermes in mythology and themed contexts:

Single symbol
Mythology heading ⚚ Greek Mythology
Classical studies ⚚ Hermes & Mercury
Not the same as ⚚ (Hermes)  |  ☤ (Caduceus)  |  ⚕ (Aesculapius)
Numeric refs &#x269A; &#9882; \269A

🧠 How It Works

1

Hexadecimal Code

&#x269A; references code point U+269A using hex digits 269A.

HTML markup
2

Decimal HTML Code

&#9882; is the decimal equivalent (9882) for the same character.

HTML markup
3

CSS Entity

\269A is the CSS escape for U+269A, used in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+269A in Miscellaneous Symbols (U+2600–U+26FF). No named entity.

Use Cases

Staff Hermes (⚚) commonly appears in:

🏛 Mythology sites

Websites and platforms about Greek and Roman mythology.

🏫 Classical studies

Academic papers, textbooks, and educational content.

🎨 Themed designs

Fantasy projects and creative content with mythological themes.

📚 Online courses

Tutorials and lessons teaching mythology and classics.

🌐 Cultural websites

Heritage platforms and classical civilization content.

📖 Literary content

Book sites and content related to classical literature.

💡 Best Practices

Do

  • Use &#x269A; or &#9882; in HTML markup
  • Provide accessible text alongside the symbol in navigation or headings
  • Use the correct symbol for your context (Hermes vs Caduceus vs Aesculapius)
  • Pick hex or decimal style and stay consistent per project
  • Test rendering with symbol-friendly fonts

Don’t

  • Use padded Unicode notation like U+0269A—the correct value is U+269A
  • Use CSS \0269A with a leading zero—prefer \269A
  • Confuse ⚚ with Caduceus ☤ (U+2624) or Staff of Aesculapius ⚕ (U+2695)
  • Use the symbol without context for screen reader users
  • Put CSS escape \269A in HTML text nodes

Key Takeaways

1

Three ways to render U+269A in HTML and CSS

&#x269A; &#9882;
2

For CSS stylesheets, use \269A in the content property

3

U+269A — STAFF OF HERMES (⚚)

4

Distinct from Caduceus ☤ and Staff of Aesculapius ⚕

5

Previous: Staff Aesculapius   Next: Star

❓ Frequently Asked Questions

Use &#x269A; (hex), &#9882; (decimal), or \269A in CSS content. There is no named HTML entity. All three render ⚚.
U+269A (STAFF OF HERMES). Miscellaneous Symbols (U+2600–U+26FF). Hex 269A, decimal 9882.
No. ⚚ (U+269A) is STAFF OF HERMES. ☤ (U+2624) is CADUCEUS. They are related in Greek mythology but are separate Unicode characters with different glyphs.
For mythology references, classical studies, themed designs, educational content, cultural websites, and decorative content representing Greek mythology or Hermes/Mercury symbolism.
Named HTML entities cover ASCII, Latin-1, and some common symbols. Miscellaneous Symbols characters like U+269A use numeric hex or decimal references—standard practice for specialized Unicode blocks.

Explore More HTML Entities!

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