HTML Entity for Funeral Urn (⚱)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+26B1

What Is Funeral Urn?

Funeral urn (⚱) is the Unicode character at U+26B1 in Miscellaneous Symbols. Official name: FUNERAL URN. It is a memorial glyph used on tribute, obituary, and funeral-service pages.

Remember
Character     ⚱
Unicode       U+26B1
Hex entity    ⚱
Decimal       ⚱
CSS escape    \26B1
Named entity  (none)
Meaning       funeral urn (memorial / tribute symbol)
Not the same  ⚰ (coffin) · ✝ (latin cross) · vase emoji

Prefer ⚱ or ⚱ in HTML (no named form). You can also type ⚱ in a UTF-8 document. Always keep visible text nearby so the meaning is clear without relying on the glyph alone.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity⚱HTML markup (preferred)
Decimal entity⚱HTML markup
Direct character⚱HTML text (UTF-8)
CSS escape\26B1Stylesheet content

When to Use Which

SituationUse
Memorial / tribute UI mark⚱ plus visible text
Related coffin symbolCoffin (⚰, U+26B0)
Plain text without symbolsWrite memorial, tribute, or in memory of
Decorative icon onlyaria-hidden="true" on the glyph + separate label
Generated text via ::before / ::aftercontent: "\26B1"

Live Preview

Symbol alone, in a sample label, and next to related forms.

Glyph ⚱
Large glyph ⚱
Sample In loving memory
Compared ⚱   ⚰   ✝
With entities Hex: ⚱ | Decimal: ⚱

Complete HTML Example

One page that shows funeral urn with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ⚱ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Funeral Urn (U+26B1) in HTML</title>
  <style>
    #point::after {
      content: "\26B1";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x26B1;</p>
  <p>Built with Decimal: &#9905;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ⚱</p>
  <p><span aria-hidden="true">&#x26B1;</span> In loving memory</p>
  <p>Related: coffin &#x26B0;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x26B1; inserts code point U+26B1 → ⚱.

2. Decimal: same code point as 9905 → &#9905;. Same visual as hex.

3. CSS: use \26B1 in content (not an HTML entity). #point::after appends ⚱.

4. Typed / a11y: paste ⚱ in a UTF-8 document when you need the urn glyph. Mark decorative glyphs with aria-hidden="true" and keep readable text next to them.

Pitfalls & Tips

Common mistakes when working with funeral urn.

Name

No named entity

There is no HTML5 named entity for U+26B1. Use &#x26B1; or &#9905;. Do not invent &urn;.

⚰

Not the coffin

Coffin is ⚰ (U+26B0). Funeral urn is ⚱. Related memorial symbols — different code points.

Font

Font coverage

Some fonts omit Miscellaneous Symbols. If ⚱ is missing, fall back to text or a font with U+26B1 coverage.

a11y

Do not rely on the glyph alone

Screen readers may skip or misname ⚱. Prefer nearby prose, or aria-hidden="true" on a decorative glyph plus a clear label.

Tone

Use with care

This symbol appears on sensitive memorial pages. Keep layouts respectful and avoid playful styling around it.

CSS vs HTML

Do not mix escapes

\26B1 belongs in CSS strings. &#x26B1; / &#9905; belong in HTML.

Semicolon

End references

Always finish entities with ; — write &#x26B1;, not &#x26B1.

Browser Support

Funeral urn (U+26B1) and its entity forms (&#x26B1;, &#9905;, CSS \\26B1) are supported in all mainstream browsers. Visible glyphs depend on Miscellaneous Symbols font coverage.

✓ Universal support

Funeral Urn (&#x26B1;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+26B1 Full support

Bottom line: Prefer &#x26B1; in HTML (no named form). Use &#9905; when decimal form is required, and \\26B1 only inside CSS content.

Key Takeaways

  • Unicode: funeral urn is U+26B1 (decimal 9905) — glyph ⚱.
  • HTML: no named entity — use &#x26B1; / &#9905; / type ⚱.
  • CSS: use \26B1 inside content for generated text.
  • Meaning: ⚱ ≠ ⚰ — pair the glyph with clear, respectful text.

One line: U+26B1 → &#x26B1; / &#9905; / CSS \26B1 (no named form).

Frequently Asked Questions

Use &#x26B1; (hex), &#9905; (decimal), type ⚱ directly in UTF-8, or the CSS escape \26B1 in content. There is no named HTML entity for U+26B1.
U+26B1 (FUNERAL URN). Hex 26B1, decimal 9905. It belongs to the Miscellaneous Symbols block (U+2600–U+26FF).
No. HTML5 does not define a named entity for U+26B1. Prefer &#x26B1; or &#9905;.
Use it on memorial, tribute, or funeral-service pages when a compact urn glyph fits the design. Always pair it with clear visible text for accessibility and context.
HTML numeric entities (&#9905; or &#x26B1;) go in markup. The CSS escape \26B1 goes in stylesheet strings (usually content on ::before/::after).
No. Funeral urn is U+26B1 (⚱). Coffin is U+26B0 (⚰). They are related memorial symbols with different code points.

Did you know?

Funeral urn is Unicode U+26B1 (decimal 9905) — glyph ⚱ (FUNERAL URN) in Miscellaneous Symbols. There is no HTML5 named entity; use &#x26B1; or &#9905;. Often paired with the coffin symbol (⚰, U+26B0) on memorial and tribute pages. Prefer nearby text or aria-label so the meaning is clear to all users.

Next: Gamma

Learn the HTML entity for Latin gamma (U+0194).

Gamma tutorial →

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