HTML Entity for Lowercase G Caron (ǧ)

What You'll Learn
How to display the lowercase 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. It is U+01E7 in the Latin Extended-B block.
Render it with ǧ, ǧ, or CSS escape \01E7. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase G Caron Entity
U+01E7Latin Extended-B
ǧHexadecimal reference
ǧDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01E7
Hex code ǧ
HTML code ǧ
Named entity (none)
CSS code \01E7
Meaning Latin small letter g with caron
Related U+01E6 = G caron (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase g caron (ǧ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01E7";
}
</style>
</head>
<body>
<p>Symbol (hex): ǧ</p>
<p>Symbol (decimal): ǧ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase g caron (ǧ) and its numeric entity references are supported in modern browsers:
👀 Live Preview
See the lowercase g caron (ǧ) in Skolt Sami and linguistic contexts:
🧠 How It Works
Hexadecimal Code
ǧ uses the Unicode hexadecimal value 01E7 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǧ uses the decimal Unicode value 487 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01E7 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+01E7 sits in Latin Extended-B. Do not confuse ǧ (g caron) with ğ (g breve) or plain g (U+0067). There is no named HTML entity.
Use Cases
The lowercase g caron (ǧ) is commonly used in:
Skolt Sami orthography and related Uralic language content.
Romani language content and transliteration systems using the caron.
Phonetic notation, linguistic papers, and academic writing.
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
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish ǧ (g caron) from ğ (g breve) and plain
g
Don’t
- Assume a named entity exists—there is none for ǧ
- Substitute ğ (
ğ) or plaingwhen ǧ is required - Put CSS escape
\01E7in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Confuse ǧ with other g variants (breve, acute, plain letter)
Key Takeaways
Three references render ǧ (no named entity)
ǧ ǧFor CSS stylesheets, use the escape in the content property
\01E7Unicode U+01E7 — LATIN SMALL LETTER G WITH CARON
Used in Skolt Sami, Romani, and linguistic transcription (Latin Extended-B)
Previous: Lowercase G Breve (ğ) Next: Lowercase G Cedilla
❓ Frequently Asked Questions
ǧ (hex), ǧ (decimal), or \01E7 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01E7 (LATIN SMALL LETTER G WITH CARON). Latin Extended-B block. Hex 01E7, decimal 487. Used in Skolt Sami, Romani, and other caron-based orthographies.ǧ, ǧ, or \01E7 instead.U+01E7) has a caron (háček) and is used in Skolt Sami, Romani, etc. ğ (U+011F, ğ) has a breve and is the Turkish soft g. They are different characters with different diacritics and language use.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
