HTML Entity for Uppercase G Caron (Ǧ)

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

What You'll Learn

How to display the uppercase G with caron (Ǧ) in HTML using hexadecimal, decimal, and CSS escape methods. The caron (háček) diacritic appears in Skolt Sami, Romani, and other orthographies. In Unicode this is U+01E6 (LATIN CAPITAL LETTER G WITH CARON) in the Latin Extended-B block.

Render it with Ǧ, Ǧ, or CSS escape \01E6. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Uppercase G Caron Entity

Unicode U+01E6

Latin Extended-B

Hex Code Ǧ

Hexadecimal reference

HTML Code Ǧ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01E6
Hex code       Ǧ
HTML code      Ǧ
Named entity   (none)
CSS code       \01E6
Meaning        Latin capital letter G with caron
Related        U+01E7 = ǧ (lowercase pair)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase G caron (Ǧ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01E6";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01E6;</p>
<p>Symbol (decimal): &#486;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase G caron (Ǧ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B characters:

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

👀 Live Preview

See the uppercase G caron (Ǧ) in Skolt Sami and linguistic contexts:

Large glyphǦ
DiacriticCaron (háček / wedge)
Case pairǦ (uppercase) / ǧ (lowercase)
Used inSkolt Sami, Romani, and linguistic transcription
Not the same asĞ (g breve) or plain G (U+0047)
Numeric refs&#x01E6; &#486; \01E6

🧠 How It Works

1

Hexadecimal Code

&#x01E6; uses the Unicode hexadecimal value 01E6 to display the uppercase G caron. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Ǧ. Unicode U+01E6 sits in Latin Extended-B. Do not confuse with Ğ (g breve, Turkish) or plain G (U+0047). Lowercase pair: U+01E7 (ǧ). There is no named HTML entity.

Use Cases

The uppercase G caron (Ǧ) is commonly used in:

📜 Skolt Sami

Skolt Sami orthography and related Uralic language content requiring Ǧ.

🔤 Romani

Romani language content and transliteration systems using the caron diacritic.

🔬 Linguistics

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

📚 Language learning

Dictionaries and courses showing correct spelling for languages using Ǧ.

📄 Academic publishing

Linguistics and minority-language studies with correct character rendering.

♿ Accessibility

Proper encoding helps screen readers handle Ǧ in localized text.

🌐 International sites

Skolt Sami, Romani, and other language sites with proper encoding.

💡 Best Practices

Do

  • Use &#486; or &#x01E6; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type Ǧ directly in UTF-8 source
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish Ǧ (caron) from Ğ (breve, Turkish) and plain G
  • Pick one numeric style (hex or decimal) per project for consistency

Don’t

  • Confuse Ǧ (g caron) with Ğ (g breve)—different characters and languages
  • Substitute plain G or &Gbreve; when Ǧ is required
  • Put CSS escape \01E6 in HTML text nodes
  • Use padded Unicode notation like U+001E6—the correct value is U+01E6
  • Use \001E6 in CSS—the correct escape is \01E6

Key Takeaways

1

Three references render Ǧ (no named entity)

&#x01E6; &#486;
2

For CSS stylesheets, use the escape in the content property

\01E6
3

Unicode U+01E6 — LATIN CAPITAL LETTER G WITH CARON

4

Used in Skolt Sami and Romani; pair with U+01E7 (lowercase)

❓ Frequently Asked Questions

Use &#x01E6; (hex), &#486; (decimal), or \01E6 in CSS content. There is no named HTML entity for this character.
U+01E6 (LATIN CAPITAL LETTER G WITH CARON). Latin Extended-B block. Hex 01E6, decimal 486. Used in Skolt Sami, Romani, and linguistic transcription.
In Skolt Sami and Romani language content, linguistic and phonetic transcription, language learning and dictionary sites, and any content requiring this character for correct orthography or transliteration.
HTML code (&#486; or &#x01E6;) is used in HTML content. The CSS entity (\01E6) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǧ but in different contexts.
Ǧ (U+01E6) has a caron (háček) and is used in Skolt Sami, Romani, and linguistic transcription. Ğ (U+011E, &Gbreve;) has a breve and is used in Turkish and Azerbaijani. They are different characters with different diacritics and language use.

Explore More HTML Entities!

Discover 1500+ HTML character references — Latin 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