HTML Entity for Marriage Symbol (⚭)

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

What Is the Marriage Symbol Entity?

Marriage symbol (⚭) is the Miscellaneous Symbols character at Unicode U+26AD (MARRIAGE SYMBOL). It is used mainly in genealogy charts and wedding notation — not a decorative heart.

Remember
Character     ⚭
Unicode       U+26AD
Hex entity    ⚭
Decimal       ⚭
CSS escape    \26AD
Named entity  (none)

Hex, decimal, CSS, and a typed character all produce the same glyph: ⚭. Prefer typing ⚭ in UTF-8 HTML when you can; use entities when encoding must be explicit.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⚭UTF-8 HTML text (default choice)
Hex entity⚭HTML markup
Decimal entity⚭HTML markup
CSS escape\26ADStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Genealogy or wedding notationType ⚭ (UTF-8)
Need an entity in HTML source⚭ or ⚭
Generated text via ::before / ::aftercontent: "\26AD"
Decorative heart instead♥ (♥) — different character
Looking for &marriage;Does not exist — use numeric form

Live Preview

Marriage symbol rendered in common study contexts.

Genealogy John ⚭ Mary
Large glyph ⚭
vs ♥ / ∞ ⚭  |  ♥  |  ∞
With date Alex ⚭ Sam · 2019
With entities Hex: ⚭ | Decimal: ⚭

Complete HTML Example

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

Hex + Decimal + CSS + Typed

Four ways to produce ⚭ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Marriage Symbol (⚭)</title>
  <style>
    #point::after {
      content: "\26AD";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x26AD;</p>
  <p>Using HTML Code: &#9901;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Genealogy: John ⚭ Mary</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+26AD → &#x26AD; in HTML. The browser turns it into ⚭.

2. Decimal: same code point as 9901 → &#9901;. Same result as hex.

3. CSS: use \26AD in content (not an HTML entity). #point::after appends that ⚭ after the paragraph text.

4. Typed ⚭: best for normal UTF-8 text, such as genealogy lines.

Pitfalls & Tips

Common mistakes when working with the marriage symbol.

Named?

No named entity

HTML5 does not define a named entity for U+26AD. Use numeric forms.

Look-alikes

Not a heart

&hearts; (♥) and &infin; (∞) are different characters. Marriage is only U+26AD.

A11y

Provide text context

Screen readers may not name the glyph clearly — add a visible word like “married” when meaning matters.

CSS vs HTML

Do not mix escapes

\26AD belongs in CSS. &#x26AD; / &#9901; belong in HTML.

Encoding

Declare UTF-8

If you type ⚭ directly, keep <meta charset="UTF-8"> so the file is not misread.

Semicolon

End references

Always finish with ; — write &#9901;, not &#9901.

Browser Support

Marriage symbol (U+26AD) and its numeric entity forms (&#x26AD;, &#9901;, CSS \\26AD) are supported in all mainstream browsers with a Unicode-capable font.

✓ Universal support

Marriage Symbol (&#x26AD;)

Type ⚭, or encode with hex, decimal, or CSS escape — same glyph everywhere fonts support it.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+26AD / entities Full support

Bottom line: Type ⚭ for normal UTF-8 text. Prefer &#x26AD; or &#9901; when encoding must be explicit, and \\26AD only inside CSS content.

Key Takeaways

  • Unicode: marriage symbol is U+26AD (decimal 9901).
  • HTML: use &#x26AD; or &#9901; when you need an entity.
  • CSS: use \26AD inside content for generated text.
  • Watch out: ⚭ ≠ ♥ ≠ ∞ — different Unicode characters.

One line: U+26AD → type ⚭, or encode as &#x26AD; / &#9901; / CSS \26AD.

Frequently Asked Questions

Use &#x26AD; (hex), &#9901; (decimal), or the CSS escape \26AD in the content property. All render ⚭. There is no named HTML entity for U+26AD.
U+26AD (MARRIAGE SYMBOL). Hex 26AD, decimal 9901. It belongs to the Miscellaneous Symbols block.
No. U+26AD has no named HTML entity. Use numeric references like &#x26AD; or &#9901;.
Use it in genealogy charts, wedding notation, and symbol references that need ⚭ between names or dates.
HTML entities (&#9901; or &#x26AD;) go in markup. The CSS escape \26AD is used in stylesheets (usually in the content property of ::before/::after). Both render ⚭.
No. Heart is &hearts; (♥). Infinity is &infin; (∞). Marriage symbol ⚭ (U+26AD) is a different character used mainly in genealogy.

Did you know?

Marriage symbol is Unicode U+26AD (decimal 9901) — MARRIAGE SYMBOL in Miscellaneous Symbols. HTML5 has no named entity for it — use &#x26AD; or &#9901;. It is used in genealogy charts — not a heart (&hearts;) or infinity (&infin;) symbol.

Next: Masculine Ordinal Indicator

Continue to the next HTML entity in this sequence (U+00BA).

Continue 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