HTML Entity for Uppercase A Above Dot (Ȧ)

What You'll Learn
How to display the uppercase A with dot above (Ȧ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is used in linguistics, phonetic transcription, and some language orthographies. It is U+0226 in the Latin Extended-B block.
Render it with Ȧ, Ȧ, or CSS escape \226. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase A Above Dot Entity
U+0226Latin Extended-B
ȦHexadecimal reference
ȦDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0226
Hex code Ȧ
HTML code Ȧ
Named entity (none)
CSS code \226
Meaning Latin capital letter A with dot above
Related U+0227 = lowercase equivalent (ȧ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase A above dot (Ȧ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\226";
}
</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 dot (Ȧ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase A above dot (Ȧ) and its references:
AA, or Ạ (dot below)🧠 How It Works
Hexadecimal Code
Ȧ uses the Unicode hexadecimal value 226 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ȧ uses the decimal Unicode value 550 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\226 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+0226 sits in Latin Extended-B. Lowercase equivalent: U+0227 (ȧ). There is no named HTML entity. Do not confuse with Ä (diaeresis) or plain A.
Use Cases
The uppercase A above dot (Ȧ) is commonly used in:
Phonetic transcriptions and linguistic descriptions using the dot-above diacritic.
Websites and apps for languages or transliteration systems that use Ȧ.
Dictionaries and learning resources showing correct spelling with dot-above marks.
Academic, editorial, or scholarly content with precise character encoding.
Headlines and styled text in linguistics or language-specific contexts.
Correct rendering so specialized linguistic content can be found and indexed.
Romanization systems that use Ȧ to represent a specific sound or letter.
💡 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
- Set appropriate
langattributes for language-specific content - Use fonts that support Latin Extended-B diacritics
- Distinguish Ȧ (dot above) from plain
Aand Ä (diaeresis)
Don’t
- Assume a named entity exists—there is none for Ȧ
- Substitute Ä or plain
Awhen Ȧ is required - Put CSS escape
\226in HTML text nodes - Assume all fonts render Latin Extended-B dot-above glyphs
- Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Three references render Ȧ (no named entity)
Ȧ ȦFor CSS stylesheets, use the escape in the content property
\226Unicode U+0226 — LATIN CAPITAL LETTER A WITH DOT ABOVE
Used in linguistics, phonetics, and some language orthographies
Previous: Uppercase A (A) Next: Uppercase A Above Ring Acute
❓ Frequently Asked Questions
Ȧ (hex), Ȧ (decimal), or \226 in CSS content. There is no named HTML entity for this character.U+0226 (LATIN CAPITAL LETTER A WITH DOT ABOVE). Latin Extended-B block. Hex 226, decimal 550. Used in linguistics and some language orthographies.Ȧ or Ȧ) is used in HTML content. The CSS entity (\226) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȧ but in different contexts.Ȧ or Ȧ in HTML, or \226 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
