HTML Entity for Lowercase G Circumflex (ĝ)

What You'll Learn
How to display the lowercase g with circumflex (ĝ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This precomposed character is a core letter in Esperanto orthography and appears in words like ĝentila (polite) and ĝojo (joy). It is U+011D in the Latin Extended-A block.
Render it with ĝ, ĝ, ĝ, or CSS escape \011D. The named entity ĝ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase G Circumflex Entity
U+011DLatin Extended-A
ĝHexadecimal reference
ĝDecimal reference
ĝMost readable option
Name Value
──────────── ──────────
Unicode U+011D
Hex code ĝ
HTML code ĝ
Named entity ĝ
CSS code \011D
Meaning Latin small letter g with circumflex
Related U+011C = G circumflex (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase g circumflex (ĝ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\011D";
}
</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 lowercase g circumflex (ĝ) and the named entity ĝ are supported in all modern browsers:
👀 Live Preview
See the lowercase g circumflex (ĝ) in Esperanto and linguistic contexts:
🧠 How It Works
Hexadecimal Code
ĝ uses the Unicode hexadecimal value 011D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ĝ uses the decimal Unicode value 285 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ĝ is the standard named entity for ĝ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\011D 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+011D sits in Latin Extended-A. Do not confuse ĝ (g circumflex) with ğ (g breve), ģ (g cedilla), or plain g (U+0067). The named entity ĝ is often the most readable choice.
Use Cases
The lowercase g circumflex (ĝ) is commonly used in:
Official Esperanto orthography, courses, communities, and publications.
Transliteration systems and linguistic notation requiring g circumflex.
Phonetic notation, linguistic papers, and academic writing.
Esperanto dictionaries and courses showing correct spelling.
Linguistics and Esperanto studies with correct character rendering.
Proper encoding helps screen readers handle ĝ in Esperanto text.
Accept and display ĝ in inputs and search for Esperanto content.
💡 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 the same method (named or numeric) consistently within a document
- Use fonts that support Latin Extended-A characters
- Distinguish ĝ (g circumflex) from ğ (g breve) and ģ (g cedilla)
Don’t
- Use plain
gor other g variants when ĝ is required in Esperanto - Put CSS escape
\011Din HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Confuse ĝ with ǧ (g caron) or other accented g letters
- Mix entity styles randomly in one file
Key Takeaways
Four references render ĝ; named entity is most readable
ĝ ĝ ĝFor CSS stylesheets, use the escape in the content property
\011DUnicode U+011D — LATIN SMALL LETTER G WITH CIRCUMFLEX
Core letter in Esperanto orthography (Latin Extended-A)
Previous: Lowercase G Cedilla (ģ) Next: Lowercase G Dot Above
❓ Frequently Asked Questions
ĝ (named), ĝ (hex), ĝ (decimal), or \011D in CSS content. All four methods render ĝ correctly.U+011D (LATIN SMALL LETTER G WITH CIRCUMFLEX). Latin Extended-A block. Hex 011D, decimal 285. Used in Esperanto and in some linguistic or transliteration contexts.ĝ. Unlike many Latin Extended-A characters, ĝ has this predefined named entity in HTML. You can also use ĝ, ĝ, or \011D.U+011C. In HTML use Ĝ (named), Ĝ, or Ĝ. Both lowercase and uppercase forms have standard named entities.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
