HTML Entity for Uppercase G Dot Above (Ġ)

What You'll Learn
How to display the uppercase G with dot above (Ġ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0120 (LATIN CAPITAL LETTER G WITH DOT ABOVE), a core letter in Maltese orthography used in words like Ġebla (stone) and Ġurnata (day). It sits in the Latin Extended-A block.
Render it with Ġ, Ġ, Ġ, or CSS escape \0120. The named entity Ġ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase G Dot Above Entity
U+0120Latin Extended-A
ĠHexadecimal reference
ĠDecimal reference
ĠMost readable option
Name Value
──────────── ──────────
Unicode U+0120
Hex code Ġ
HTML code Ġ
Named entity Ġ
CSS code \0120
Meaning Latin capital letter G with dot above
Related U+0121 = ġ (lowercase pair)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase G dot above (Ġ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0120";
}
</style>
</head>
<body>
<p>Symbol (hex): Ġ</p>
<p>Symbol (decimal): Ġ</p>
<p>Symbol (named): Ġ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase G dot above (Ġ) and the named entity Ġ are supported in modern browsers:
👀 Live Preview
See the uppercase G dot above (Ġ) in Maltese and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ġ uses the Unicode hexadecimal value 0120 to display the uppercase G dot above. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ġ uses the decimal Unicode value 288 to display the same character. A common method for Latin Extended-A letters.
Named Entity
Ġ is the standard named entity for Ġ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0120 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ġ. Unicode U+0120 sits in Latin Extended-A. Lowercase pair: U+0121 (ġ). Do not confuse with plain G (U+0047), Ĝ (g circumflex), or Ģ (g cedilla).
Use Cases
The uppercase G dot above (Ġ) is commonly used in:
Official Maltese orthography and Maltese language websites requiring Ġ.
Transliteration systems and linguistic notation using g with dot above.
Phonetic notation, linguistic papers, and academic writing with overdot marks.
Maltese dictionaries and courses showing correct spelling.
Linguistics and Maltese language studies with correct character rendering.
Proper encoding helps screen readers handle Ġ in Maltese text.
Localized websites targeting Maltese audiences with proper encoding.
💡 Best Practices
Do
- Use
Ġin HTML when possible for readability - Serve pages as UTF-8; you can also type Ġ directly in UTF-8 source
- Use fonts that support Latin Extended-A (U+0100–U+017F)
- Set
lang="mt"on Maltese content for correct pronunciation hints - Distinguish Ġ (dot above) from Ĝ (circumflex) and Ģ (cedilla)
Don’t
- Substitute plain
Gwhen Ġ is required for correct Maltese spelling - Confuse dot above Ġ with circumflex Ĝ or cedilla Ģ
- Put CSS escape
\0120in HTML text nodes - Use padded Unicode notation like U+00120—the correct value is
U+0120 - Use
\00120in CSS—the correct escape is\0120
Key Takeaways
Four references render Ġ; named entity is most readable
Ġ Ġ ĠFor CSS stylesheets, use the escape in the content property
\0120Unicode U+0120 — LATIN CAPITAL LETTER G WITH DOT ABOVE
Core Maltese letter; pair with U+0121 (lowercase ġ)
Previous: Uppercase G Circumflex (Ĝ) Next: Uppercase G Hook
❓ Frequently Asked Questions
Ġ (named), Ġ (hex), Ġ (decimal), or \0120 in CSS content. The named entity Ġ is the most readable for HTML content.U+0120 (LATIN CAPITAL LETTER G WITH DOT ABOVE). Latin Extended-A block. Hex 0120, decimal 288. Used in Maltese orthography and linguistic contexts.Ġ or Ġ) or the named entity Ġ is used in HTML content. The CSS entity (\0120) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ġ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — Maltese letters, diacritics, and more.
8 people found this page helpful
