HTML Entity for Feminine Ordinal Indicator (ª)

What You'll Learn
How to display the Feminine ordinal indicator (ª) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+00AA (FEMININE ORDINAL INDICATOR) in the Latin-1 Supplement block (U+0080–U+00FF)—used in Spanish, Portuguese, and other Romance languages to form feminine ordinals (e.g. 1ª primera, 2ª segunda).
Render it with ª, ª, ª, or CSS escape \00AA. Pair it with a number for correct ordinals: 1ª → 1ª. For masculine ordinals use º (º, U+00BA). Do not confuse ª with the female sign (♀, U+2640).
⚡ Quick Reference — Feminine Ordinal Indicator
U+00AALatin-1 Supplement block
ªHexadecimal reference
ªDecimal reference
ªMost readable option
Name Value
──────────── ──────────
Unicode U+00AA
Hex code ª
HTML code ª
Named entity ª
CSS code \00AA
Meaning Feminine ordinal suffix (1ª, 2ª)
Related U+00BA = Masculine ordinal (º); U+2640 = Female sign (♀)Complete HTML Example
This example demonstrates the Feminine ordinal indicator (ª) using hexadecimal code, decimal HTML code, the named entity ª, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00AA";
}
</style>
</head>
<body>
<p>Feminine Ordinal using Hexadecimal: ª</p>
<p>Feminine Ordinal using HTML Code: ª</p>
<p>Feminine Ordinal using HTML Entity: ª</p>
<p id="point">Feminine Ordinal using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Feminine ordinal indicator entity is universally supported in all modern browsers:
👀 Live Preview
See the feminine ordinal indicator (ª) in Spanish and Portuguese ordinal context:
🧠 How It Works
Named HTML Entity
ª is the semantic named entity for the Feminine ordinal indicator—the easiest to read in source HTML for Spanish and Portuguese content.
Hexadecimal Code
ª uses the Unicode hexadecimal value 00AA. The x prefix indicates hexadecimal format.
Decimal HTML Code
ª uses the decimal Unicode value 170 to display the same character.
CSS Entity
\00AA is used in CSS stylesheets, particularly in the content property of ::before and ::after.
Same visual result
All four methods produce the Feminine ordinal indicator: ª. Unicode U+00AA is in Latin-1 Supplement. Use with numbers for ordinals: e.g. 1ª for 1ª.
Use Cases
The Feminine ordinal indicator (ª) is commonly used in:
Feminine ordinals: 1ª (primera), 2ª (segunda), 3ª (tercera) in dates, lists, and rankings.
Week numbers (21ª semana), positions (1ª posición), and ranked lists.
Correct ordinal formatting in legal texts, contracts, and official documents in Romance languages.
Language-learning apps, grammar guides, and educational material for Spanish and Portuguese.
Rankings and positions (1ª, 2ª, 3ª) in results and leaderboards.
Proper ordinal formatting when localizing content for Spanish, Portuguese, or related languages.
💡 Best Practices
Do
- Pair the indicator with a number (1ª, 2ª) to form correct ordinals
- Use
ªfor readable source markup in Spanish/Portuguese content - Set
lang="es"orlang="pt"on content that uses ordinals - Use ª for feminine and
º(º) for masculine where required - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ª (ordinal ª) with ♀ (female sign ♀)
- Use the indicator alone without a preceding number in ordinal context
- Put CSS escape
\00AAin HTML text nodes - Mix entity styles randomly in one file
- Assume ordinals work the same in every language—check locale rules
Key Takeaways
Three HTML references plus CSS render ª
ª ª ªFor CSS stylesheets, use the escape in the content property
\00AAUnicode U+00AA — FEMININE ORDINAL INDICATOR
Prefer ª for readability; pair with numbers (1ª)
Latin-1 Supplement; not the same as the female sign (U+2640)
❓ Frequently Asked Questions
ª (hex), ª (decimal), ª (named), or \00AA in CSS content. All produce ª.U+00AA (FEMININE ORDINAL INDICATOR). Latin-1 Supplement block (U+0080–U+00FF). Hex 00AA, decimal 170. Used for feminine ordinals in Spanish, Portuguese, and other Romance languages.ª is the named entity for ª. You can also use ª or ª. All are equivalent in modern browsers.ª, ª, or ª) go in markup. The CSS escape \00AA 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 — Latin-1 ordinals, symbols, and more.
8 people found this page helpful
