HTML Entity for Unmarried Partnership Symbol (⚯)

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

What You'll Learn

How to display the Unmarried Partnership Symbol (⚯) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+26AF (UNMARRIED PARTNERSHIP SYMBOL) in the Miscellaneous Symbols block (U+2600–U+26FF)—a symbol used to represent partnership or relationship status in legal, business, and social contexts.

Render it with ⚯, ⚯, or CSS escape \26AF. There is no named HTML entity. Compare ⚭ (marriage symbol, U+26AD) for the related married-status mark.

⚡ Quick Reference — Unmarried Partnership Symbol

Unicode U+26AF

Miscellaneous Symbols block

Hex Code ⚯

Hexadecimal reference

HTML Code ⚯

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26AF
Hex code       ⚯
HTML code      ⚯
Named entity   (none)
CSS code       \26AF
Meaning        Unmarried partnership symbol
Related        U+26AD = marriage symbol (⚭)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing ⚯ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\26AF";
  }
 </style>
</head>
<body>
<p>Partnership (hex): &#x26AF;</p>
<p>Partnership (decimal): &#9903;</p>
<p id="point">Partnership (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+26AF is supported in modern browsers when rendered with a font that includes Miscellaneous Symbols:

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

👀 Live Preview

See the Unmarried Partnership Symbol (⚯) in legal and social contexts:

Large glyph
Relationship Alex ⚯ Jordan (partners)
Legal form Status: ⚯ Unmarried partnership
Business Partnership ⚯ Agreement
Numeric refs &#x26AF; &#9903;

🧠 How It Works

1

Hexadecimal Code

&#x26AF; uses the Unicode hexadecimal value 26AF to display the Unmarried Partnership Symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\26AF is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+26AF in the Miscellaneous Symbols block (U+2600–U+26FF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Unmarried Partnership Symbol (⚯) is commonly used in:

⚖️ Legal documents

Forms, contracts, and legal paperwork with partnership status fields.

💼 Business contexts

Partnership agreements, corporate materials, and business documentation.

👥 Relationship status

Profiles, dating sites, and status indicators for unmarried partners.

📱 Social media

Posts, bios, and content representing partnership relationships.

📝 Web forms

Surveys and questionnaires asking about relationship or partnership status.

📚 Documentation

Guides and instructional content about partnership concepts.

💡 Best Practices

Do

  • Use &#x26AF; or &#9903; consistently in markup
  • Add aria-label or visible text describing partnership status
  • Use fonts that support Miscellaneous Symbols (Segoe UI Symbol, Apple Symbols)
  • Pair ⚯ with explanatory text in forms and legal interfaces
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⚯ (U+26AF) with ⚭ (marriage symbol U+26AD)
  • Use U+026AF or CSS \026AF—the correct value is U+26AF and \26AF
  • Expect a named entity—none exists for U+26AF
  • Put CSS escape \26AF in HTML text nodes
  • Rely on the symbol alone in accessibility-critical status interfaces

Key Takeaways

1

Two HTML numeric references render ⚯

&#x26AF; &#9903;
2

For CSS stylesheets, use \26AF in content

3

Unicode U+26AF — UNMARRIED PARTNERSHIP SYMBOL

4

Distinct from marriage symbol ⚭ (U+26AD)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x26AF; (hex), &#9903; (decimal), or \26AF in CSS content. There is no named entity. All produce ⚯.
U+26AF (UNMARRIED PARTNERSHIP SYMBOL). Miscellaneous Symbols block (U+2600–U+26FF). Hex 26AF, decimal 9903. Represents partnership or relationship status.
In legal documents, business contexts, relationship status indicators, social media content, partnership representations, web forms, and documentation about partnership status.
HTML references (&#9903; or &#x26AF;) go in markup. The CSS escape \26AF is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. ⚯ (U+26AF) is the unmarried partnership symbol. ⚭ (U+26AD) is the marriage symbol. They are different Unicode characters—see the marriage symbol page for U+26AD.

Explore More HTML Entities!

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