HTML Entity for Doubled Male Sign (⚣)

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

What You'll Learn

How to display the Doubled Male Sign (⚣) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+26A3 (DOUBLED MALE 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+26A3. Use ⚣, ⚣, or \26A3 in CSS content. For the standard male sign use ♂ (♂, U+2642); for doubled female use U+26A2 (⚢).

⚡ Quick Reference — Doubled Male Sign

Unicode U+26A3

Miscellaneous Symbols block

Hex Code ⚣

Hexadecimal reference

HTML Code ⚣

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26A3
Hex code       ⚣
HTML code      ⚣
Named entity   —
CSS code       \26A3
Related        U+2642 = Male (♂); U+26A2 = Doubled female
1

Complete HTML Example

This example demonstrates the Doubled Male 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: "\26A3";
  }
 </style>
</head>
<body>
<p>Doubled Male Sign using Hexadecimal: &#x26A3;</p>
<p>Doubled Male Sign using HTML Code: &#9891;</p>
<p id="point">Doubled Male Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+26A3 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 Male Sign (⚣) in inclusive and form contexts:

Symbol
Form label Identity: ⚢   ♂   ⚣
vs male sign ⚣ doubled   ♂ single
Numeric refs &#x26A3; &#9891; \26A3

🧠 How It Works

1

Hexadecimal Code

&#x26A3; uses the Unicode hexadecimal value 26A3 to display the Doubled Male Sign.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\26A3 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+26A3. Male sign: &male; (♂). Doubled female: U+26A2 (⚢).

Use Cases

The Doubled Male 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

Gender-related symbolism in articles, blogs, and inclusive campaigns.

👤 User profiles

Identity options in social apps and community platforms.

♂ Related symbols

Alongside ♂ (male) and other gender symbols in scientific or astrological content.

💡 Best Practices

Do

  • Use &#x26A3; or &#9891; for U+26A3
  • 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 \26A3 only inside CSS content

Don’t

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

Key Takeaways

1

No named entity—use numeric references

&#x26A3; &#9891;
2

For CSS stylesheets, use the escape in the content property

\26A3
3

Unicode U+26A3 DOUBLED MALE SIGN

4

Related: ♂ via &male; (single male sign)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x26A3; (hex), &#9891; (decimal), or \26A3 in CSS content. There is no named HTML entity. All produce ⚣.
U+26A3 (DOUBLED MALE SIGN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 26A3, decimal 9891.
In inclusive design, gender diversity and LGBTQ+ content, forms and surveys, educational material, biological or astrological content, user profiles, and applications that display gender-related symbols.
HTML5 named entities do not include U+26A3. Use numeric references &#9891; or &#x26A3;, or the CSS escape \26A3 in stylesheets.
HTML numeric references (&#9891; or &#x26A3;) go in markup. The CSS escape \26A3 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