HTML Entity for Lowercase G Dot Above (ġ)

What You'll Learn
How to display the lowercase g with dot above (ġ) in HTML using hexadecimal, decimal, and CSS escape methods. This precomposed character is used in Maltese orthography and appears in words like ġellel and ġurnal. It is U+0121 in the Latin Extended-A block.
Render it with ġ, ġ, or CSS escape \0121. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase G Dot Above Entity
U+0121Latin Extended-A
ġHexadecimal reference
ġDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0121
Hex code ġ
HTML code ġ
Named entity (none)
CSS code \0121
Meaning Latin small letter g with dot above
Related U+0120 = G dot above (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase g dot above (ġ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0121";
}
</style>
</head>
<body>
<p>Symbol (hex): ġ</p>
<p>Symbol (decimal): ġ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase g dot above (ġ) and its numeric entity references are supported in modern browsers:
👀 Live Preview
See the lowercase g dot above (ġ) in Maltese and linguistic contexts:
🧠 How It Works
Hexadecimal Code
ġ uses the Unicode hexadecimal value 0121 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ġ uses the decimal Unicode value 289 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\0121 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+0121 sits in Latin Extended-A. Do not confuse ġ (g dot above) with ĝ (g circumflex), ģ (g cedilla), or plain g (U+0067). There is no named HTML entity.
Use Cases
The lowercase g dot above (ġ) is commonly used in:
Official Maltese orthography and Maltese language websites.
Transliteration systems and linguistic notation requiring g with dot above.
Phonetic notation, linguistic papers, and academic writing.
Maltese dictionaries and courses showing correct spelling.
Linguistics and Maltese language studies with correct rendering.
Proper encoding helps screen readers handle ġ in Maltese text.
Localized websites targeting Maltese audiences with proper encoding.
💡 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
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-A (U+0100–U+017F)
- Distinguish ġ (g dot above) from ĝ (g circumflex) and ģ (g cedilla)
Don’t
- Assume a named entity exists—there is none for ġ
- Substitute plain
gor other g variants when ġ is required in Maltese - Put CSS escape
\0121in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Confuse ġ (dot above) with ģ (cedilla) or ĝ (circumflex)
Key Takeaways
Three references render ġ (no named entity)
ġ ġFor CSS stylesheets, use the escape in the content property
\0121Unicode U+0121 — LATIN SMALL LETTER G WITH DOT ABOVE
Used in Maltese orthography and linguistic transcription (Latin Extended-A)
Previous: Lowercase G Circumflex (ĝ) Next: Lowercase G Hook
❓ Frequently Asked Questions
ġ (hex), ġ (decimal), or \0121 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0121 (LATIN SMALL LETTER G WITH DOT ABOVE). Latin Extended-A block. Hex 0121, decimal 289. Used in Maltese and in some linguistic or transliteration contexts.ġ, ġ, or \0121 instead.U+0121) has a dot above and is used in Maltese. ĝ (U+011D, ĝ) has a circumflex and is used in Esperanto. ģ (U+0123) has a cedilla and is used in Latvian. They are different characters with different diacritics and language use.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
