HTML Entity for Funeral Urn (⚱)

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

What You'll Learn

How to display the Funeral Urn symbol (⚱) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+26B1 (FUNERAL URN) in the Miscellaneous Symbols block (U+2600–U+26FF)—used on memorial sites, obituaries, and tribute designs.

Render it with ⚱, ⚱, or CSS escape \26B1. There is no named HTML entity. Pair the symbol with respectful text or aria-label for accessibility on remembrance pages.

⚡ Quick Reference — Funeral Urn

Unicode U+26B1

Miscellaneous Symbols

Hex Code ⚱

Hexadecimal reference

HTML Code ⚱

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26B1
Hex code       ⚱
HTML code      ⚱
Named entity   (none)
CSS code       \26B1
Meaning        Funeral urn (memorial / remembrance)
Related        U+2620 = Skull and crossbones (☠); see Symbol entities
1

Complete HTML Example

This example demonstrates the Funeral Urn (⚱) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\26B1";
  }
 </style>
</head>
<body>
<p>Funeral Urn using Hexadecimal: &#x26B1;</p>
<p>Funeral Urn using Decimal: &#9905;</p>
<p id="point">Funeral Urn using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Funeral Urn is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the Funeral Urn symbol (⚱) in memorial and tribute contexts:

Memorial heading ⚱ In Loving Memory
Obituary ⚱ Obituary — Celebrating a life well lived
Large glyph
Condolence ⚱ With deepest sympathy
Numeric refs &#x26B1; &#9905; \26B1

🧠 How It Works

1

Hexadecimal Code

&#x26B1; uses the Unicode hexadecimal value 26B1 to display the Funeral Urn sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9905; uses the decimal Unicode value 9905 to display the same character.

HTML markup
3

CSS Entity

\26B1 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+26B1 is in Miscellaneous Symbols (U+2600–U+26FF). For related symbols, see HTML Symbol Entities.

Use Cases

The Funeral Urn symbol (⚱) is commonly used in:

🕯 Memorial websites

Dedicated tribute pages, memorial sites, and online obituaries.

🏠 Funeral services

Funeral home sites, service information, cemetery or cremation pages.

📄 Obituaries

Death notices, remembrance announcements, and obituary listings.

💐 Sympathy

Condolence messages, sympathy cards, and grief support content.

📦 Memorial products

Urns, memorial jewelry, and tribute product catalogs.

🌐 Symbol references

HTML entity lists, Unicode charts, and character documentation.

💡 Best Practices

Do

  • Use &#9905; or &#x26B1; consistently (no named entity)
  • Pair ⚱ with descriptive text or aria-label for screen readers
  • Use the symbol only in respectful remembrance or funeral contexts
  • Use the CSS escape in ::before / ::after for decorative headers
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use ⚱ in casual or inappropriate contexts
  • Expect a named entity—none exists for U+26B1
  • Put CSS escape \26B1 in HTML text nodes
  • Rely on the symbol alone without accessible text for meaning
  • Skip font and browser checks for symbol rendering

Key Takeaways

1

Two HTML numeric references plus CSS render ⚱

&#x26B1; &#9905;
2

For CSS stylesheets, use the escape in the content property

\26B1
3

Unicode U+26B1 — FUNERAL URN

4

Miscellaneous Symbols (U+2600–U+26FF)

5

Next: Gamma (Ɣ)

❓ Frequently Asked Questions

Use &#x26B1; (hex), &#9905; (decimal), or \26B1 in CSS content. There is no named entity.
U+26B1 (FUNERAL URN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 26B1, decimal 9905. No named HTML entity.
On memorial and tribute websites, funeral service pages, obituaries, sympathy content, memorial product listings, and remembrance-related designs.
HTML references (&#9905; or &#x26B1;) go in markup. The CSS escape \26B1 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
The HTML named character set includes only a subset of symbols. Use &#9905; (decimal) or &#x26B1; (hexadecimal)—both render ⚱ in modern browsers.

Explore More HTML Entities!

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