HTML Entity for Uppercase G Caron (Ǧ)

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
U+01E6Latin Extended-B
ǦHexadecimal reference
ǦDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing the uppercase G caron (Ǧ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01E6";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǧ</p>
<p>Symbol (decimal): Ǧ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase G caron (Ǧ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B characters:
👀 Live Preview
See the uppercase G caron (Ǧ) in Skolt Sami and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ǧ uses the Unicode hexadecimal value 01E6 to display the uppercase G caron. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǧ uses the decimal Unicode value 486 to display the same character. A common method for Latin Extended-B letters.
CSS Entity
\01E6 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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 orthography and related Uralic language content requiring Ǧ.
Romani language content and transliteration systems using the caron diacritic.
Phonetic notation, linguistic papers, and academic writing with caron marks.
Dictionaries and courses showing correct spelling for languages using Ǧ.
Linguistics and minority-language studies with correct character rendering.
Proper encoding helps screen readers handle Ǧ in localized text.
Skolt Sami, Romani, and other language sites with proper encoding.
💡 Best Practices
Do
- Use
ǦorǦ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
GorĞwhen Ǧ is required - Put CSS escape
\01E6in HTML text nodes - Use padded Unicode notation like U+001E6—the correct value is
U+01E6 - Use
\001E6in CSS—the correct escape is\01E6
Key Takeaways
Three references render Ǧ (no named entity)
Ǧ ǦFor CSS stylesheets, use the escape in the content property
\01E6Unicode U+01E6 — LATIN CAPITAL LETTER G WITH CARON
Used in Skolt Sami and Romani; pair with U+01E7 (lowercase)
Previous: Uppercase G Breve (Ğ) Next: Uppercase G Cedilla
❓ Frequently Asked Questions
Ǧ (hex), Ǧ (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.Ǧ or Ǧ) 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, Ğ) 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.
8 people found this page helpful
