HTML Entity for Divorce Symbol (⚮)

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

What You'll Learn

How to display the Divorce symbol (⚮) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+26AE (DIVORCE SYMBOL) in the Miscellaneous Symbols block (U+2600–U+26FF) and represents divorce or separation in legal, relationship, and family-law contexts.

There is no named HTML entity for U+26AE. Use ⚮, ⚮, or \26AE in CSS content. Do not confuse with Division Times (⋇, ⋇) or Division (÷, ÷).

⚡ Quick Reference — Divorce Symbol

Unicode U+26AE

Miscellaneous Symbols block

Hex Code ⚮

Hexadecimal reference

HTML Code ⚮

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26AE
Hex code       ⚮
HTML code      ⚮
Named entity   —
CSS code       \26AE
1

Complete HTML Example

This example demonstrates the Divorce symbol (⚮) 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: "\26AE";
  }
 </style>
</head>
<body>
<p>Divorce Symbol using Hexadecimal: &#x26AE;</p>
<p>Divorce Symbol using HTML Code: &#9902;</p>
<p id="point">Divorce Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+26AE is supported in modern browsers; use a font with Miscellaneous Symbols coverage for consistent rendering:

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

👀 Live Preview

See the Divorce symbol (⚮) rendered live in legal and relationship contexts:

Marital status Married   ⚮ Divorced   Widowed
Heading ⚮ Family Law Resources
Large glyph
Not math symbols ⚮ divorce   ⋇ div times   ÷ divide
Monospace refs &#x26AE; &#9902; \26AE

🧠 How It Works

1

Hexadecimal Code

&#x26AE; uses the Unicode hexadecimal value 26AE to display the Divorce symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9902; uses the decimal Unicode value 9902 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\26AE 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 Divorce symbol: . Unicode U+26AE is in Miscellaneous Symbols (U+2600–U+26FF). No named HTML entity exists.

Use Cases

The Divorce symbol (⚮) commonly appears in the following scenarios:

⚖ Family law

Divorce information pages and legal articles with visual symbols.

💬 Counseling

Therapy and relationship resources about separation or divorce.

📝 Editorial

Blog posts and articles on family dynamics and divorce topics.

📋 Forms

Surveys and applications with marital-status options using ⚮.

🌐 Unicode refs

Miscellaneous Symbols (U+2600–U+26FF) documentation and lists.

📑 Entity guides

HTML entity references for legal, counseling, or content projects.

💡 Best Practices

Do

  • Use fonts that cover Miscellaneous Symbols (U+2600–U+26FF)
  • Pair ⚮ with text or ARIA (“Divorced”, “Divorce”)
  • Provide clear wording in legal or sensitive content
  • Pick one numeric style (hex or decimal) per project
  • Use UTF-8 and proper lang attributes on pages

Don’t

  • Expect &divorce; (no such named entity exists)
  • Confuse ⚮ with ⋇ (Division Times) or ÷ (Division)
  • Rely on the icon alone without accessible text
  • Use CSS escape \26AE inside HTML markup
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

Two numeric references render ⚮

&#x26AE; &#9902;
2

For CSS stylesheets, use the escape in the content property

\26AE
3

Unicode U+26AE is DIVORCE SYMBOL in Miscellaneous Symbols

4

No named HTML entity—use numeric codes or CSS only

❓ Frequently Asked Questions

Use &#x26AE; (hex), &#9902; (decimal), or \26AE in CSS content. There is no named HTML entity. All three produce ⚮.
U+26AE (hex 26AE, decimal 9902) in the Miscellaneous Symbols block. Used to represent divorce or separation in legal or relationship contexts.
In legal content, family-law pages, divorce-related articles, counseling sites, forms with marital status, and Unicode symbol reference documentation.
No. There is no named HTML entity for U+26AE. Use &#x26AE;, &#9902;, or \26AE in CSS. Do not use a non-standard &divorce; reference.
No. Divorce symbol is U+26AE (⚮) in Miscellaneous Symbols. Division Times is U+22C7 (⋇, &divonx;) in Mathematical Operators. They are unrelated characters despite similar-sounding names.

Explore More HTML Entities!

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