HTML Entity for Lowercase A Ring Above Acute (ǻ)

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

What You'll Learn

How to display the lowercase a with ring above and acute (ǻ) in HTML using hexadecimal, decimal, and CSS escape methods. This character combines the ring (å) with an acute accent and is used in certain linguistic and orthographic contexts, including some Scandinavian and extended Latin usages. It is U+01FB in the Latin Extended-B block.

Render it with ǻ, ǻ, or CSS escape \01FB. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase A Ring Above Acute Entity

Unicode U+01FB

Latin Extended-B

Hex Code ǻ

Hexadecimal reference

HTML Code ǻ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01FB
Hex code       ǻ
HTML code      ǻ
Named entity   (none)
CSS code       \01FB
Meaning        Latin small letter a with ring above and acute
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase a ring above acute (ǻ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01FB";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01FB;</p>
<p>Symbol (decimal): &#507;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase a ring above acute (ǻ) renders correctly in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase a ring above acute (ǻ) and how it differs from related characters:

Large glyphǻ
Character typea with ring above + acute accent
Not the same aså (ring only) or á (acute only)
Unicode blockLatin Extended-B (U+0180–U+024F)
Numeric refs&#x01FB; &#507; \01FB

🧠 How It Works

1

Hexadecimal Code

&#x01FB; uses the Unicode hexadecimal value 01FB to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#507; uses the decimal Unicode value 507 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ǻ. Unicode U+01FB sits in Latin Extended-B. Do not confuse ǻ with å (ring only, U+00E5) or á (acute only, U+00E1). There is no named HTML entity.

Use Cases

The lowercase a ring above acute (ǻ) is commonly used in:

🔤 Linguistics

Phonetic transcriptions and linguistic notation requiring the combined ring and acute character.

📚 Academic

Dictionary entries, scholarly texts, and language references with extended Latin characters.

🌐 Internationalization

Websites requiring correct rendering of Latin Extended-B for linguistic or historical content.

📄 Publishing

Books, articles, and editorial content with proper names or specialized terminology using ǻ.

🎨 Orthography

Extended Latin orthographic systems that combine ring and acute on the letter a.

🔍 Search & SEO

Correct encoding so specialized content is indexed and displayed consistently.

📧 Forms & Input

User input that may contain ǻ; use UTF-8 encoding and numeric entities as needed.

💡 Best Practices

Do

  • Use &#507; or &#x01FB; 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 \01FB in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render ǻ (no named entity)

&#x01FB; &#507;
2

For CSS stylesheets, use the escape in the content property

\01FB
3

Unicode U+01FB — LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE

4

Used in linguistic notation and extended Latin orthography

❓ Frequently Asked Questions

Use &#x01FB; (hex), &#507; (decimal), or \01FB in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+01FB (LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE). Latin Extended-B block. Hex 01FB, decimal 507. Used in linguistic and orthographic contexts.
In linguistic and phonetic content, Scandinavian or extended Latin orthography, academic and dictionary entries, language learning materials, and any text requiring the specific a-with-ring-and-acute character.
HTML code (&#507; or &#x01FB;) is used in HTML content. The CSS entity (\01FB) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ǻ but in different contexts.
No. There is no named HTML entity for ǻ. Use &#507; or &#x01FB; in HTML, or \01FB 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.

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