HTML Entity for Uppercase G Circumflex (Ĝ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+011C

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

Unicode U+011C

Latin Extended-A

Hex Code Ĝ

Hexadecimal reference

HTML Code Ĝ

Decimal reference

Named Entity Ĝ

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\011C";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x011C;</p>
<p>Symbol (decimal): &#284;</p>
<p>Symbol (named): &Gcirc;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase G circumflex (Ĝ) and the named entity &Gcirc; are supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase G circumflex (Ĝ) in Esperanto and linguistic contexts:

Large glyphĜ
Named entity&Gcirc; renders as Ĝ
Case pairĜ (uppercase) / ĝ (lowercase, &gcirc;)
Used inEsperanto orthography (e.g. Ĝojo = joy)
Not the same asplain G (U+0047) or Ğ (g breve)
Numeric refs&#x011C; &#284; &Gcirc; \011C

🧠 How It Works

1

Hexadecimal Code

&#x011C; uses the Unicode hexadecimal value 011C to display the uppercase G circumflex. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#284; uses the decimal Unicode value 284 to display the same character. A common method for Latin Extended-A letters.

HTML markup
3

Named Entity

&Gcirc; is the standard named entity for Ĝ—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\011C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ĝ. Unicode U+011C sits in Latin Extended-A. Lowercase pair: U+011D (&gcirc;). Do not confuse with plain G (U+0047), Ğ (g breve), or Ê (E circumflex).

Use Cases

The uppercase G circumflex (Ĝ) is commonly used in:

🌐 Esperanto

Esperanto language websites, courses, and content requiring correct Ĝ spelling.

📚 Language learning

Esperanto dictionaries and courses teaching circumflex letters.

🔤 Linguistics

Phonetic notation, linguistic papers, and academic writing with circumflex marks.

📄 Academic publishing

Constructed-language studies and typographic content with Latin Extended-A characters.

🔍 Forms & search

Accept and display Ĝ in inputs and search for Esperanto text.

♿ Accessibility

Proper encoding helps screen readers handle Ĝ in localized text.

🎨 Typography

Font design and character set demonstrations for circumflex diacritics.

💡 Best Practices

Do

  • Use &Gcirc; 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 &gcirc; (ĝ) when documenting both forms

Don’t

  • Substitute plain G when Ĝ is required for correct Esperanto spelling
  • Confuse circumflex Ĝ with breve Ğ or caron Ǧ
  • Put CSS escape \011C in HTML text nodes
  • Use padded Unicode notation like U+0011C—the correct value is U+011C
  • Use \0011C in CSS—the correct escape is \011C

Key Takeaways

1

Four references render Ĝ; named entity is most readable

&#x011C; &#284; &Gcirc;
2

For CSS stylesheets, use the escape in the content property

\011C
3

Unicode U+011C — LATIN CAPITAL LETTER G WITH CIRCUMFLEX

4

Core Esperanto letter; pair with &gcirc; (U+011D)

❓ Frequently Asked Questions

Use &Gcirc; (named), &#x011C; (hex), &#284; (decimal), or \011C in CSS content. The named entity &Gcirc; 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.
In Esperanto language content, linguistic and phonetic transcription, language learning and dictionary sites, and any content requiring correct Esperanto orthography or transliteration.
HTML code (&#284; or &#x011C;) or the named entity &Gcirc; 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.
The uppercase G circumflex (Ĝ) is primarily used in Esperanto, where it represents a distinct letter in the alphabet. It may also appear in constructed-language content, linguistic research, and academic texts requiring precise circumflex diacritical marks.

Explore More HTML Entities!

Discover 1500+ HTML character references — Esperanto letters, diacritics, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful