HTML Entity for Uppercase G Cedilla (Ģ)

What You'll Learn
How to display the uppercase G with cedilla (Ģ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0122 (LATIN CAPITAL LETTER G WITH CEDILLA), essential for Latvian orthography and linguistic notation. It sits in the Latin Extended-A block.
Render it with Ģ, Ģ, Ģ, or CSS escape \0122. The named entity Ģ is often the most readable option in HTML source (the lowercase pair ģ has no named entity).
⚡ Quick Reference — Uppercase G Cedilla Entity
U+0122Latin Extended-A
ĢHexadecimal reference
ĢDecimal reference
ĢMost readable option
Name Value
──────────── ──────────
Unicode U+0122
Hex code Ģ
HTML code Ģ
Named entity Ģ
CSS code \0122
Meaning Latin capital letter G with cedilla
Related U+0123 = ģ (lowercase pair)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase G cedilla (Ģ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0122";
}
</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 cedilla (Ģ) and the named entity Ģ are supported in modern browsers:
👀 Live Preview
See the uppercase G cedilla (Ģ) in Latvian and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ģ uses the Unicode hexadecimal value 0122 to display the uppercase G cedilla. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ģ uses the decimal Unicode value 290 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
\0122 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+0122 sits in Latin Extended-A. Lowercase pair: U+0123 (ģ, no named entity). Do not confuse with Ç (C cedilla), Ǧ (g caron), or plain G (U+0047).
Use Cases
The uppercase G cedilla (Ģ) is commonly used in:
Official Latvian orthography and Latvian language websites requiring Ģ.
Transliteration systems and linguistic notation using g cedilla.
Phonetic notation, linguistic papers, and academic writing with cedilla marks.
Latvian dictionaries and courses showing correct spelling.
Linguistics and Latvian language studies with correct character rendering.
Proper encoding helps screen readers handle Ģ in Latvian text.
Localized websites targeting Latvian 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="lv"on Latvian content for correct pronunciation hints - Distinguish Ģ (g cedilla) from Ǧ (g caron) and Ğ (g breve)
Don’t
- Confuse Ģ (g cedilla) with Ç (C cedilla)—different letters
- Substitute plain
Gwhen Ģ is required for correct Latvian spelling - Put CSS escape
\0122in HTML text nodes - Use padded Unicode notation like U+00122—the correct value is
U+0122 - Use
\00122in CSS—the correct escape is\0122
Key Takeaways
Four references render Ģ; named entity is most readable
Ģ Ģ ĢFor CSS stylesheets, use the escape in the content property
\0122Unicode U+0122 — LATIN CAPITAL LETTER G WITH CEDILLA
Essential for Latvian; lowercase pair U+0123 has no named entity
Previous: Uppercase G Caron (Ǧ) Next: Uppercase G Circumflex
❓ Frequently Asked Questions
Ģ (named), Ģ (hex), Ģ (decimal), or \0122 in CSS content. The named entity Ģ is the most readable for HTML content.U+0122 (LATIN CAPITAL LETTER G WITH CEDILLA). Latin Extended-A block. Hex 0122, decimal 290. Used in Latvian orthography and linguistic contexts.Ģ or Ģ) or the named entity Ģ is used in HTML content. The CSS entity (\0122) 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 — Latvian letters, diacritics, and more.
8 people found this page helpful
