HTML Entity for Uppercase G Circumflex (Ĝ)

What You'll Learn
How to display the uppercase G with circumflex (Ĝ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. In Unicode this is U+011C (LATIN CAPITAL LETTER G WITH CIRCUMFLEX), a core letter in Esperanto orthography used at the start of words like Ĝojo (joy). It sits in the Latin Extended-A block.
Render it with Ĝ, Ĝ, Ĝ, or CSS escape \011C. The named entity Ĝ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase G Circumflex Entity
U+011CLatin Extended-A
ĜHexadecimal reference
ĜDecimal reference
ĜMost readable option
Name Value
──────────── ──────────
Unicode U+011C
Hex code Ĝ
HTML code Ĝ
Named entity Ĝ
CSS code \011C
Meaning Latin capital letter G with circumflex
Related U+011D = ĝ (lowercase pair)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase G circumflex (Ĝ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\011C";
}
</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 circumflex (Ĝ) and the named entity Ĝ are supported in modern browsers:
👀 Live Preview
See the uppercase G circumflex (Ĝ) in Esperanto and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ĝ uses the Unicode hexadecimal value 011C to display the uppercase G circumflex. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ĝ uses the decimal Unicode value 284 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
\011C 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+011C sits in Latin Extended-A. Lowercase pair: U+011D (ĝ). Do not confuse with plain G (U+0047), Ğ (g breve), or Ê (E circumflex).
Use Cases
The uppercase G circumflex (Ĝ) is commonly used in:
Esperanto language websites, courses, and content requiring correct Ĝ spelling.
Esperanto dictionaries and courses teaching circumflex letters.
Phonetic notation, linguistic papers, and academic writing with circumflex marks.
Constructed-language studies and typographic content with Latin Extended-A characters.
Accept and display Ĝ in inputs and search for Esperanto text.
Proper encoding helps screen readers handle Ĝ in localized text.
Font design and character set demonstrations for circumflex diacritics.
💡 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="eo"on Esperanto content for correct pronunciation hints - Link to the lowercase pair
ĝ(ĝ) when documenting both forms
Don’t
- Substitute plain
Gwhen Ĝ is required for correct Esperanto spelling - Confuse circumflex Ĝ with breve Ğ or caron Ǧ
- Put CSS escape
\011Cin HTML text nodes - Use padded Unicode notation like U+0011C—the correct value is
U+011C - Use
\0011Cin CSS—the correct escape is\011C
Key Takeaways
Four references render Ĝ; named entity is most readable
Ĝ Ĝ ĜFor CSS stylesheets, use the escape in the content property
\011CUnicode U+011C — LATIN CAPITAL LETTER G WITH CIRCUMFLEX
Core Esperanto letter; pair with ĝ (U+011D)
Previous: Uppercase G Cedilla (Ģ) Next: Uppercase G Dot Above
❓ Frequently Asked Questions
Ĝ (named), Ĝ (hex), Ĝ (decimal), or \011C in CSS content. The named entity Ĝ is the most readable for HTML content.U+011C (LATIN CAPITAL LETTER G WITH CIRCUMFLEX). Latin Extended-A block. Hex 011C, decimal 284. Used in Esperanto and linguistic contexts.Ĝ or Ĝ) or the named entity Ĝ is used in HTML content. The CSS entity (\011C) 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 — Esperanto letters, diacritics, and more.
8 people found this page helpful
