HTML Entity for Doubled Female Sign (⚢)

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

What You'll Learn

How to display the Doubled Female Sign (⚢) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+26A2 (DOUBLED FEMALE SIGN) in the Miscellaneous Symbols block (U+2600–U+26FF)—used in inclusive design, gender diversity content, forms, and educational material.

There is no named HTML entity for U+26A2. Use ⚢, ⚢, or \26A2 in CSS content. For the standard female sign use ♀ (♀, U+2640); for doubled male use U+26A3 (⚣).

⚡ Quick Reference — Doubled Female Sign

Unicode U+26A2

Miscellaneous Symbols block

Hex Code ⚢

Hexadecimal reference

HTML Code ⚢

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26A2
Hex code       ⚢
HTML code      ⚢
Named entity   —
CSS code       \26A2
Related        U+2640 = Female (♀); U+26A3 = Doubled male
1

Complete HTML Example

This example demonstrates the Doubled Female Sign (⚢) 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: "\26A2";
  }
 </style>
</head>
<body>
<p>Doubled Female Sign using Hexadecimal: &#x26A2;</p>
<p>Doubled Female Sign using HTML Code: &#9890;</p>
<p id="point">Doubled Female Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+26A2 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 3.2+

👀 Live Preview

See the Doubled Female Sign (⚢) in inclusive and form contexts:

Symbol
Form label Identity: ⚢   ♀   ⚣
vs female sign ⚢ doubled   ♀ single
Numeric refs &#x26A2; &#9890; \26A2

🧠 How It Works

1

Hexadecimal Code

&#x26A2; uses the Unicode hexadecimal value 26A2 to display the Doubled Female Sign.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\26A2 is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+26A2. Female sign: &female; (♀). Doubled male: U+26A3 (⚣).

Use Cases

The Doubled Female Sign (⚢) is commonly used in:

🌈 Inclusive design

Gender-inclusive symbols in apps, profiles, and identity options.

📋 Forms & surveys

Gender or identity selection fields alongside other gender symbols.

🎓 Education

Gender diversity, LGBTQ+ topics, and symbolic notation in courses.

✊ Symbolic content

Feminist or gender-related symbolism in articles, blogs, and campaigns.

👤 User profiles

Identity options in social apps and community platforms.

♀ Related symbols

Alongside ♀ (female) and other gender symbols in scientific or astrological content.

💡 Best Practices

Do

  • Use &#x26A2; or &#9890; for U+26A2
  • Use symbol fonts (Segoe UI Symbol, Noto Sans Symbols) for reliable glyphs
  • Add aria-label or visible text when the symbol conveys meaning
  • Pair symbols with clear labels in forms and selection UIs
  • Use \26A2 only inside CSS content

Don’t

  • Assume a named entity exists for U+26A2—it does not
  • Confuse ⚢ with ♀ (&female;, single female sign)
  • Confuse ⚢ with ⚣ (doubled male)
  • Rely on decorative fonts that omit Miscellaneous Symbols
  • Put CSS escape \26A2 in HTML text nodes
  • Use the symbol alone without context in accessibility-critical UIs

Key Takeaways

1

No named entity—use numeric references

&#x26A2; &#9890;
2

For CSS stylesheets, use the escape in the content property

\26A2
3

Unicode U+26A2 DOUBLED FEMALE SIGN

4

Related: ♀ via &female; (single female sign)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x26A2; (hex), &#9890; (decimal), or \26A2 in CSS content. There is no named HTML entity. All produce ⚢.
U+26A2 (DOUBLED FEMALE SIGN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 26A2, decimal 9890.
In inclusive design, gender diversity and LGBTQ+ content, forms and surveys, educational material, feminist or symbolic content, user profiles, and applications that display gender-related symbols.
HTML5 named entities do not include U+26A2. Use numeric references &#9890; or &#x26A2;, or the CSS escape \26A2 in stylesheets.
HTML numeric references (&#9890; or &#x26A2;) go in markup. The CSS escape \26A2 is used in stylesheets, typically in the content property of pseudo-elements. Both render ⚢.

Explore More HTML Entities!

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