HTML Entity for Staff Hermes (⚚)

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
U+269AMiscellaneous Symbols
⚚Hexadecimal reference
⚚Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing ⚚ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\269A";
}
</style>
</head>
<body>
<p>Mythology (hex): ⚚ Hermes</p>
<p>Mythology (decimal): ⚚ Greek</p>
<p id="point">Mythology (CSS): Classics</p>
</body>
</html>🌐 Browser Support
Staff Hermes (⚚) renders in modern browsers when fonts include Miscellaneous Symbols glyphs:
👀 Live Preview
See the staff of Hermes in mythology and themed contexts:
🧠 How It Works
Hexadecimal Code
⚚ references code point U+269A using hex digits 269A.
Decimal HTML Code
⚚ is the decimal equivalent (9882) for the same character.
CSS Entity
\269A is the CSS escape for U+269A, used in the content property of pseudo-elements.
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:
Websites and platforms about Greek and Roman mythology.
Academic papers, textbooks, and educational content.
Fantasy projects and creative content with mythological themes.
Tutorials and lessons teaching mythology and classics.
Heritage platforms and classical civilization content.
Book sites and content related to classical literature.
💡 Best Practices
Do
- Use
⚚or⚚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
\0269Awith 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
\269Ain HTML text nodes
Key Takeaways
Three ways to render U+269A in HTML and CSS
⚚ ⚚For CSS stylesheets, use \269A in the content property
U+269A — STAFF OF HERMES (⚚)
Distinct from Caduceus ☤ and Staff of Aesculapius ⚕
Previous: Staff Aesculapius Next: Star
❓ Frequently Asked Questions
⚚ (hex), ⚚ (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.Explore More HTML Entities!
Discover 1500+ HTML character references — mythology symbols, stars, and more.
8 people found this page helpful
