HTML Entity for Uppercase A Above Dot (Ȧ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+0226

What Is Uppercase A Above Dot?

Uppercase A above dot (Ȧ) is the Unicode character at U+0226 in Latin Extended-B. Official name: LATIN CAPITAL LETTER A WITH DOT ABOVE. It is a precomposed capital A with a dot diacritic — used in linguistics and some orthographies.

Remember
Character     Ȧ
Unicode       U+0226
Hex entity    Ȧ
Decimal       Ȧ
CSS escape    \226
Named entity  (none)
Lowercase     ȧ (U+0227)

Prefer Ȧ or Ȧ in HTML markup. You can also type Ȧ in UTF-8. There is no named entity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterȦHTML text (UTF-8)
Hex entityȦHTML markup (preferred)
Decimal entityȦHTML markup
CSS escape\226Stylesheet content
Named entity—Not defined in HTML5
Lowercase pairȧ (ȧ, U+0227)Small letter a with dot above

When to Use Which

SituationUse
Capital A with precomposed dot aboveȦ or Ȧ
Small letter a with dot aboveȧ / ȧ
Plain capital A (no diacritic)A / A
Looking for a named formDoes not exist — use numeric form
Generated text via ::before / ::aftercontent: "\226"

Live Preview

Uppercase A above dot rendered next to its lowercase pair and plain A.

Example Letter Ȧ with dot above
Large glyph Ȧ
Compared Ȧ   ȧ   A   Á
With entities Hex: Ȧ | Decimal: Ȧ

Complete HTML Example

One page that shows Uppercase A Above Dot with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce Ȧ, plus a short sentence and the lowercase pair.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase A Above Dot (Ȧ) in HTML</title>
  <style>
    #point::after {
      content: "\226";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x226;</p>
  <p>Using HTML Code: &#550;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ȧ</p>
  <p>Example: Letter Ȧ with dot above</p>
  <p>Case pair: Ȧ / ȧ</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+0226 → &#x226; in HTML. The browser turns it into Ȧ.

2. Decimal: same code point as 550 → &#550;. Same result as hex.

3. CSS: use \226 in content (not an HTML entity). #point::after appends that Ȧ after the paragraph text.

4. Typed / pair: paste Ȧ in UTF-8, and use ȧ (U+0227) for the lowercase form.

Pitfalls & Tips

Common mistakes when working with Uppercase A Above Dot.

Named?

No named entity

HTML5 does not define a named entity for U+0226. Use &#x226; or &#550;.

A

Not plain A

Keyboard A is U+0041. Use U+0226 only when you need the precomposed dotted capital.

Combine

Prefer precomposed

A + combining dot above (U+0307) can look similar but is two code points. Prefer Ȧ when the precomposed letter is available.

ȧ

Case pair

Lowercase a with dot above is U+0227 (ȧ). Pick the case that matches your text.

CSS vs HTML

Do not mix escapes

\226 belongs in CSS strings. &#x226; / &#550; belong in HTML.

Fonts

Extended Latin coverage

Some UI fonts omit Latin Extended-B letters. Prefer a font that covers this block for display.

Browser Support

Uppercase A above dot (U+0226) and its entity forms (&#x226;, &#550;, CSS \\226) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Uppercase A Above Dot (&#x0226;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0226 / entities Full support

Bottom line: Prefer &#x226; or &#550; in HTML. Use \\226 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: this letter is U+0226 (decimal 550) — glyph Ȧ.
  • HTML: use &#x226; or &#550; — no named entity; typing Ȧ also works.
  • CSS: use \226 inside content for generated text.
  • Watch out: Ȧ ≠ plain A; pair is ȧ; prefer precomposed over combining.

One line: U+0226 → &#x226; / &#550; / CSS \226.

Frequently Asked Questions

Use &#x226; (hex), &#550; (decimal), type Ȧ directly in UTF-8, or the CSS escape \226 in content. There is no named HTML entity for U+0226.
U+0226 (LATIN CAPITAL LETTER A WITH DOT ABOVE). Hex 226, decimal 550. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#550; or &#x226;.
Use it in linguistic, phonetic, or orthographic text that needs capital A with a dot above as one precomposed letter. Prefer the lowercase pair U+0227 for small-letter contexts.
HTML entities (&#550; or &#x226;) go in markup. The CSS escape \226 goes in stylesheet strings (usually content on ::before/::after).
No. Ȧ is the precomposed capital letter (U+0226). Plain A is U+0041. A followed by combining dot above (U+0307) is a two-code-point sequence that can look similar but is not the same character.

Did you know?

Uppercase A above dot (Ȧ) is Unicode U+0226 (decimal 550) — LATIN CAPITAL LETTER A WITH DOT ABOVE in Latin Extended-B. HTML5 has no named entity — use &#x226; or &#550;. Its lowercase pair is U+0227 (ȧ). Do not confuse the precomposed letter with plain A plus combining dot above (U+0307).

Next: Uppercase A Above Ring Acute

Learn the HTML entity for uppercase A with ring above and acute.

Continue tutorial →

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