HTML Entity for Caduceus (☤)

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

What You'll Learn

How to display the Caduceus (☤) in HTML using numeric references and CSS escapes. This character is U+2624 (CADUCEUS) in the Miscellaneous Symbols block (U+2600–U+26FF), approved in Unicode 1.1 (1993). It depicts a winged staff with two intertwined snakes—the staff of Hermes (Mercury) in Greek and Roman mythology, traditionally linked to commerce, trade, and negotiation.

Although widely used in medical branding, the historically correct medical emblem is the Staff of Aesculapius (, U+2695)—a single snake on a staff without wings. There is no named HTML entity for U+2624; use ☤, ☤, or \2624 in CSS.

⚡ Quick Reference — Caduceus

Unicode U+2624

Miscellaneous Symbols block

Hex Code ☤

Hexadecimal reference

HTML Code ☤

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2624
Hex code       ☤
HTML code      ☤
Named entity   —
CSS code       \2624
1

Complete HTML Example

This example shows U+2624 using hexadecimal and decimal references plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2624";
  }
 </style>
</head>
<body>
<p>Caduceus using Hexa Decimal: &#x2624;</p>
<p>Caduceus using HTML Code: &#9764;</p>
<p id="point">Caduceus using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2624 is widely supported in modern browsers; glyph detail depends on font coverage of Miscellaneous Symbols:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Caduceus rendered live alongside the medical staff symbol:

Caduceus
vs medical staff Caduceus: ☤   Aesculapius: ⚕
Commerce context Trade & logistics ☤ Hermes staff
Healthcare branding City Clinic ☤   (common but historically inexact for medicine)
Monospace refs &#x2624; &#9764; \2624

🧠 How It Works

1

Hexadecimal Code

&#x2624; references code point U+2624 using hex digits 2624.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2624 is the CSS escape for U+2624, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Caduceus glyph: . Related medical emblem: Staff of Aesculapius U+2695 (⚕) — single snake, no wings.

Use Cases

The Caduceus (☤) commonly appears in:

🤝 Commerce & trade

Hermes’ staff for shipping, logistics, trade associations, and business logos.

🏥 Healthcare branding

Clinics and pharmacies (common usage; ⚕ is historically more accurate for medicine).

💊 Pharmaceuticals

Drug stores, health products, and medical-adjacent branding.

📚 Academic content

Mythology, medical history, symbolism, and classics publications.

⚖ Legal & diplomatic

Negotiation and mediation symbolism in legal or diplomatic contexts.

🎨 Decorative design

Thematic branding, certificates, and symbolic graphics.

♿ Accessibility

Use aria-label="Caduceus" or visible text; don’t rely on the glyph alone.

💡 Best Practices

Do

  • Use &#x2624; or &#9764; consistently in markup
  • Use ⚕ (U+2695) when you need the traditional medical staff symbol
  • Label icons with aria-label (e.g. “Caduceus” or “Medical clinic”)
  • Pick fonts that render Miscellaneous Symbols clearly
  • Declare <meta charset="utf-8"> in HTML documents

Don’t

  • Present ☤ as the historically correct medical emblem without context
  • Confuse Caduceus ☤ (two snakes, wings) with Staff of Aesculapius ⚕
  • Expect a named HTML entity—none exists for U+2624
  • Use CSS escape \2624 inside HTML text nodes
  • Use decorative medical symbols without accessible labels in UI

Key Takeaways

1

Two numeric references render ☤

&#x2624; &#9764;
2

CSS content escape

\2624
3

U+2624 CADUCEUS — Miscellaneous Symbols block

4

Hermes staff: commerce/trade; medical emblem is usually ⚕

5

No named entity—use hex, decimal, or CSS escape

❓ Frequently Asked Questions

Use &#x2624; (hex), &#9764; (decimal), or \2624 in CSS content. There is no named entity.
U+2624 (CADUCEUS). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2624, decimal 9764. Winged staff with two snakes—staff of Hermes.
For commerce/trade symbolism, mythology, pharmacy branding (common), and decorative design. For historically accurate medical emblems, prefer Staff of Aesculapius &#x2695; (⚕).
Numeric references belong in HTML markup. The CSS escape \2624 belongs in stylesheets, typically in the content property of pseudo-elements. Both produce ☤.
No. Use &#x2624;, &#9764;, or \2624 in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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