HTML Entity for Female Sign (♀)

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

What You'll Learn

How to display the Female Sign (♀) in HTML using hexadecimal, decimal, the named entity ♀, and CSS escape methods. This character is U+2640 (FEMALE SIGN) in the Miscellaneous Symbols block (U+2600–U+26FF)—the standard symbol for female gender, used in forms, profiles, scientific content, and inclusive design.

Render it with ♀, ♀, ♀, or CSS escape \2640. For the male sign use ♂ (♂, U+2642). Do not confuse ♀ with the feminine ordinal indicator (ª, U+00AA).

⚡ Quick Reference — Female Sign

Unicode U+2640

Miscellaneous Symbols

Hex Code ♀

Hexadecimal reference

HTML Code ♀

Decimal reference

Named Entity ♀

HTML5 named entity for U+2640

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2640
Hex code       ♀
HTML code      ♀
Named entity   ♀
CSS code       \2640
Meaning        Female gender symbol
Related        U+2642 = Male sign (♂); U+26A2 = Doubled female (⚢)
1

Complete HTML Example

This example demonstrates the Female Sign (♀) using hexadecimal code, decimal HTML code, the named entity ♀, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2640";
  }
 </style>
</head>
<body>
<p>Female Sign using Hexadecimal: &#x2640;</p>
<p>Female Sign using HTML Code: &#9792;</p>
<p>Female Sign using HTML Entity: &female;</p>
<p id="point">Female Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Female Sign entity is universally supported in modern browsers:

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

👀 Live Preview

See the female sign (♀) in form context and compared with the male sign (♂):

Gender label ♀ Female
Large glyph
vs male sign ♀ (female)   vs   ♂ (male)
Numeric refs &#x2640; &#9792; &female;
Named entity &female; is the readable option

🧠 How It Works

1

Hexadecimal Code

&#x2640; uses the Unicode hexadecimal value 2640 to display the Female Sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&female; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the Female Sign glyph: . Unicode U+2640 sits in the Miscellaneous Symbols block (U+2600–U+26FF).

Use Cases

The Female Sign (♀) commonly appears in:

📋 Forms & profiles

Gender or sex selection in registration forms, user profiles, and surveys.

🔬 Science & biology

Denote female in biology, genetics, and scientific notation.

🏥 Healthcare

Patient records, medical forms, and healthcare applications.

♿ Inclusive design

Identity options and gender-inclusive interfaces alongside other choices.

🚻 Facility signage

Indicate female restrooms, changing rooms, or facilities on websites and apps.

📊 Demographics

Charts, reports, and data visualizations that break down by sex or gender.

💡 Best Practices

Do

  • Use &female; for readable source markup
  • Pair the symbol with text (e.g. “Female”) or aria-label for accessibility
  • Offer inclusive options alongside female/male where appropriate
  • Use semantic form controls (select, radio) with proper labels
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ♀ (female sign) with ª (feminine ordinal ª)
  • Rely on the symbol alone without accessible text for screen readers
  • Put CSS escape \2640 in HTML text nodes
  • Assume the symbol alone satisfies inclusive gender UX requirements
  • Mix entity styles randomly in one file

Key Takeaways

1

Three HTML references plus CSS render ♀

&#x2640; &#9792; &female;
2

For CSS stylesheets, use the escape in the content property

\2640
3

Unicode U+2640 — FEMALE SIGN

4

Prefer &female; for readability in HTML source

5

Four methods; pair with text for accessible gender UI

❓ Frequently Asked Questions

Use &#x2640; (hex), &#9792; (decimal), &female; (named), or \2640 in CSS content. All produce ♀.
U+2640 (FEMALE SIGN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2640, decimal 9792. Standard symbol for female gender.
In forms and profiles for gender selection, scientific and biological content, healthcare applications, inclusive design, restroom signage, demographics, and any content requiring gender or sex designation.
Yes. &female; is the named entity for ♀. You can also use &#9792; or &#x2640;. All are equivalent in modern browsers.
HTML references (&#9792;, &#x2640;, or &female;) go in markup. The CSS escape \2640 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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