HTML Entity for Interlocked Female Male Sign (⚤)

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

What You'll Learn

How to display the Interlocked Female Male sign (⚤) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol combines female (♀) and male (♂) glyphs into one character, often used in gender-inclusive design, forms, accessibility, and diversity messaging.

It is U+26A4 (INTERLOCKED FEMALE AND MALE SIGN) in the Miscellaneous Symbols block (U+2600–U+26FF). Render it with ⚤, ⚤, or CSS \26A4. There is no named HTML entity for ⚤.

⚡ Quick Reference — Interlocked Female Male Sign

Unicode U+26A4

Miscellaneous Symbols

Hex Code ⚤

Hexadecimal reference

HTML Code ⚤

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26A4
Hex code       ⚤
HTML code      ⚤
Named entity   (none)
CSS code       \26A4
Meaning        Interlocked female and male
Related        U+2640 = ♀   U+2642 = ♂
CSS note       \26A4 or \026A4 in content property
1

Complete HTML Example

This example demonstrates the Interlocked Female 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: "\26A4";
  }
 </style>
</head>
<body>
<p>Interlocked Female Male Sign using Hexadecimal: &#x26A4;</p>
<p>Interlocked Female Male Sign using Decimal: &#9892;</p>
<p id="point">Interlocked Female Male Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Interlocked Female Male sign (⚤) is widely supported in modern browsers when the font includes Miscellaneous Symbols:

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

👀 Live Preview

See the Interlocked Female Male sign (⚤) in typical inclusive UI contexts:

Form option ⚤ Inclusive / combined representation
With ♀ ♂ ♀ ♂ → combined as ⚤
Large glyph
Profile Gender: ⚤   (with descriptive text)
Numeric refs &#x26A4; &#9892; \26A4

🧠 How It Works

1

Hexadecimal Code

&#x26A4; uses the Unicode hexadecimal value 26A4 to display the Interlocked Female Male sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
4

No Named Entity

U+26A4 has no &...; named form in HTML5. Use hex, decimal, or a CSS escape—not a fictional named entity.

HTML markup
=

Same visual result

All three methods produce . Unicode U+26A4 is in Miscellaneous Symbols. Next: Interrobang.

Use Cases

The Interlocked Female Male sign (⚤) is commonly used in:

🌈 Inclusive Design

Forms, profiles, and UI with combined or inclusive gender representation.

♿ Accessibility

Clear symbolic options with aria-label and descriptive text.

🏳 LGBTQ+ Content

Inclusive signage, branding, and diversity messaging.

👤 User Profiles

Directories and apps that support varied identity fields.

🏥 Healthcare

Demographic forms with inclusive gender options.

🎨 Signage

Inclusive facilities, diversity statements, and design systems.

💡 Best Practices

Do

  • Use &#x26A4; or &#9892; in HTML content
  • Pair the symbol with clear text or aria-label
  • Pick one numeric style (hex or decimal) per project
  • Set <meta charset="utf-8"> for reliable rendering
  • Use respectful, inclusive surrounding copy

Don’t

  • Expect a named HTML entity for U+26A4
  • Rely on the icon alone without accessible description
  • Use CSS \26A4 inside HTML text nodes
  • Confuse ⚤ with ⚥ (male with stroke) or other gender symbols
  • Use the symbol without considering user context and sensitivity

Key Takeaways

1

Two HTML numeric references plus CSS insert U+26A4

&#x26A4; &#9892;
2

For CSS, use \26A4 in the content property

3

Unicode U+26A4 — INTERLOCKED FEMALE AND MALE SIGN

4

No named entity—use hex, decimal, or CSS escape

5

Previous: Intercalate   Next: Interrobang

❓ Frequently Asked Questions

Use &#x26A4; (hex), &#9892; (decimal), or \26A4 in CSS content. There is no named entity. All three methods render ⚤ correctly.
U+26A4 (INTERLOCKED FEMALE AND MALE SIGN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 26A4, decimal 9892. Combines female (♀) and male (♂) symbolism.
In gender-inclusive design, accessible forms, LGBTQ+ inclusive content, diversity messaging, user profiles, and any context that represents combined or inclusive gender symbolism.
HTML references (&#9892; or &#x26A4;) go in markup. The CSS escape \26A4 is used in stylesheets, typically on ::before or ::after. Both produce ⚤.
Named entities cover common characters; many Miscellaneous Symbols use numeric hex or decimal codes or CSS escapes. That is standard for U+26A4.

Explore More HTML Entities!

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