HTML Entity for Lowercase A Diaeresis Macron (ǟ)

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

What You'll Learn

How to display the lowercase a with diaeresis and macron (ǟ) in HTML using hexadecimal, decimal, and CSS escape methods. This character combines the diaeresis (two dots) and macron (long mark) diacritics and is used in linguistics, phonetic transcription, and some Baltic and Finno-Ugric language orthographies. It is U+01DF in the Latin Extended-B block.

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

⚡ Quick Reference — Lowercase A Diaeresis Macron Entity

Unicode U+01DF

Latin Extended-B

Hex Code ǟ

Hexadecimal reference

HTML Code ǟ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01DF
Hex code       ǟ
HTML code      ǟ
Named entity   (none)
CSS code       \1DF
Meaning        Latin small letter a with diaeresis and macron
Related        U+01DE = uppercase equivalent (Ǟ)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase a diaeresis macron (ǟ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The lowercase a diaeresis macron (ǟ) 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 diaeresis macron (ǟ) and its references:

Large glyphǟ
DiacriticsDiaeresis (¨) + macron (¯) on a
Uppercase pairǞ (U+01DE) / ǟ (U+01DF)
Not the same asä (ä), ā (ā), or plain a
Numeric refs&#x1DF; &#479; \1DF

🧠 How It Works

1

Hexadecimal Code

&#x1DF; uses the Unicode hexadecimal value 1DF to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\1DF 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+01DF sits in Latin Extended-B. Uppercase equivalent: U+01DE (Ǟ). There is no named HTML entity. Do not confuse with ä (diaeresis only) or ā (macron only).

Use Cases

The lowercase a diaeresis macron (ǟ) is commonly used in:

🔤 Linguistics

Phonetic transcriptions and linguistic descriptions requiring both diaeresis and macron on a.

🌐 Internationalization

Websites and apps for languages that use this character in their orthography.

📚 Language learning

Dictionaries and learning resources showing correct spelling with combined diacritics.

📄 Publishing

Academic, editorial, or scholarly content with precise character encoding.

🎨 Typography

Headlines and styled text in linguistics or language-specific contexts.

🔍 Search & SEO

Correct rendering so specialized linguistic content can be found and indexed.

📝 Transliteration

Romanization systems that use ǟ to represent a specific sound or letter.

💡 Best Practices

Do

  • Use &#479; or &#x1DF; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ǟ directly in UTF-8 source
  • Set appropriate lang attributes for language-specific content
  • Use fonts that support Latin Extended-B combined diacritics
  • Distinguish ǟ from ä (U+00E4), ā (U+0101), and plain a (U+0061)

Don’t

  • Assume a named entity exists—there is none for ǟ
  • Substitute ä or ā when ǟ is required
  • Put CSS escape \1DF in HTML text nodes
  • Assume all fonts render Latin Extended-B combined diacritics
  • Omit UTF-8 encoding on pages with extended Latin characters

Key Takeaways

1

Three references render ǟ (no named entity)

&#x1DF; &#479;
2

For CSS stylesheets, use the escape in the content property

\1DF
3

Unicode U+01DF — LATIN SMALL LETTER A WITH DIAERESIS AND MACRON

4

Used in linguistics, phonetics, and some Baltic / Finno-Ugric orthographies

❓ Frequently Asked Questions

Use &#x1DF; (hex), &#479; (decimal), or \1DF in CSS content. There is no named HTML entity for this character.
U+01DF (LATIN SMALL LETTER A WITH DIAERESIS AND MACRON). Latin Extended-B block. Hex 1DF, decimal 479. Combines diaeresis and macron diacritical marks.
In linguistic and phonetic content, language learning materials, transliteration systems, and internationalized web content. It appears in some Baltic and Finno-Ugric language orthographies.
HTML code (&#479; or &#x1DF;) is used in HTML content. The CSS entity (\1DF) 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 &#479; or &#x1DF; in HTML, or \1DF 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