HTML Entity for Staff Aesculapius (⚕)

What You'll Learn
How to display Staff Aesculapius (⚕) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2695 (STAFF OF AESCULAPIUS) in the Miscellaneous Symbols block (U+2600–U+26FF)—the Rod of Asclepius, a traditional medical and healing symbol.
Render it with ⚕, ⚕, or CSS \2695. There is no named HTML entity. Do not confuse ⚕ with Caduceus ☤ (U+2624) or Staff Hermes ⚚ (U+269A).
⚡ Quick Reference — Staff Aesculapius
U+2695Miscellaneous Symbols
⚕Hexadecimal reference
⚕Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2695
Hex code ⚕
HTML code ⚕
Named entity (none)
CSS code \2695
Meaning Staff of Aesculapius (Rod of Asclepius)
Not the same U+2624 = Caduceus (☤)
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: "\2695";
}
</style>
</head>
<body>
<p>Medical (hex): ⚕ Health</p>
<p>Medical (decimal): ⚕ Clinic</p>
<p id="point">Medical (CSS): Services</p>
</body>
</html>🌐 Browser Support
Staff Aesculapius (⚕) renders in modern browsers when fonts include Miscellaneous Symbols glyphs:
👀 Live Preview
See the staff of Aesculapius in healthcare contexts:
🧠 How It Works
Hexadecimal Code
⚕ references code point U+2695 using hex digits 2695.
Decimal HTML Code
⚕ is the decimal equivalent (9877) for the same character.
CSS Entity
\2695 is the CSS escape for U+2695, used in the content property of pseudo-elements.
Same visual result
All three methods produce ⚕. Unicode U+2695 in Miscellaneous Symbols (U+2600–U+26FF). No named entity.
Use Cases
Staff Aesculapius (⚕) commonly appears in:
Hospital, clinic, and medical practice platforms.
Wellness sites, medical news, and healthcare information.
Medical education and healthcare training materials.
Patient portals, medical software, and mobile health tools.
Drug information platforms and medical product pages.
Medical logos and healthcare marketing materials.
💡 Best Practices
Do
- Use
⚕or⚕for the Rod of Asclepius in medical contexts - Provide accessible text like “Medical services” alongside the symbol
- Use CSS
::beforewith\2695for decorative medical icons - Pick hex or decimal style and stay consistent per project
- Test rendering with symbol-friendly fonts
Don’t
- Use padded Unicode notation like U+02695—the correct value is
U+2695 - Use CSS
\02695with a leading zero—prefer\2695 - Confuse ⚕ (single serpent) with Caduceus ☤ (double serpent, U+2624)
- Use the symbol as the only indicator without accessible text for screen readers
- Put CSS escape
\2695in HTML text nodes
Key Takeaways
Three ways to render U+2695 in HTML and CSS
⚕ ⚕For CSS stylesheets, use \2695 in the content property
U+2695 — STAFF OF AESCULAPIUS (⚕)
Rod of Asclepius (single serpent)—not the Caduceus ☤
Previous: Squat Black Right Arrow Next: Staff Hermes
❓ Frequently Asked Questions
⚕ (hex), ⚕ (decimal), or \2695 in CSS content. There is no named HTML entity. All three render ⚕.U+2695 (STAFF OF AESCULAPIUS). Miscellaneous Symbols (U+2600–U+26FF). Hex 2695, decimal 9877.Explore More HTML Entities!
Discover 1500+ HTML character references — medical symbols, arrows, and more.
8 people found this page helpful
