HTML Entity for Uppercase A Above Ring Acute (Ǻ)

What You'll Learn
How to display the uppercase A with ring above and acute (Ǻ) in HTML using hexadecimal, decimal, and CSS escape methods. This character combines a ring diacritic with an acute accent on the letter A and is used in certain linguistic and orthographic contexts. It is U+01FA in the Latin Extended-B block.
Render it with Ǻ, Ǻ, or CSS escape \01FA. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase A Above Ring Acute Entity
U+01FALatin Extended-B
ǺHexadecimal reference
ǺDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01FA
Hex code Ǻ
HTML code Ǻ
Named entity (none)
CSS code \01FA
Meaning Latin capital letter A with ring above and acute
Related U+01FB = lowercase equivalent (ǻ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase A above ring acute (Ǻ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01FA";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǻ</p>
<p>Symbol (decimal): Ǻ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase A above ring acute (Ǻ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase A above ring acute (Ǻ) and how it differs from related characters:
Å) or Á (acute only, Á)🧠 How It Works
Hexadecimal Code
Ǻ uses the Unicode hexadecimal value 01FA to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǻ uses the decimal Unicode value 506 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01FA is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ǻ. Unicode U+01FA sits in Latin Extended-B. Lowercase equivalent: U+01FB (ǻ). Do not confuse Ǻ with Å (ring only) or Á (acute only). There is no named HTML entity.
Use Cases
The uppercase A above ring acute (Ǻ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the combined ring and acute character.
Dictionary entries, scholarly texts, and language references with extended Latin characters.
Websites requiring correct rendering of Latin Extended-B for linguistic or historical content.
Books, articles, and editorial content with proper names or specialized terminology using Ǻ.
Extended Latin orthographic systems that combine ring and acute on the letter A.
Correct encoding so specialized content is indexed and displayed consistently.
User input that may contain Ǻ; use UTF-8 encoding and numeric entities as needed.
💡 Best Practices
Do
- Use
ǺorǺin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ǻ directly in UTF-8 source
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ǻ from Å (ring) and Á (acute)
Don’t
- Assume a named entity exists—there is none for Ǻ
- Substitute Å or Á when Ǻ is required
- Put CSS escape
\01FAin HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Three references render Ǻ (no named entity)
Ǻ ǺFor CSS stylesheets, use the escape in the content property
\01FAUnicode U+01FA — LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE
Used in linguistic notation and extended Latin orthography
Previous: Uppercase A Above Dot (Ȧ) Next: Uppercase A Acute
❓ Frequently Asked Questions
Ǻ (hex), Ǻ (decimal), or \01FA in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01FA (LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE). Latin Extended-B block. Hex 01FA, decimal 506. Used in linguistic and orthographic contexts.Ǻ or Ǻ) is used in HTML content. The CSS entity (\01FA) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǻ but in different contexts.Ǻ or Ǻ in HTML, or \01FA in CSS. This is standard for many Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
