HTML Entity for Lowercase G Caron (ǧ)

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

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

Unicode U+01E7

Latin Extended-B

Hex Code ǧ

Hexadecimal reference

HTML Code ǧ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

A simple example showing the lowercase g caron (ǧ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The lowercase g caron (ǧ) and its numeric entity references are supported in modern browsers:

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

👀 Live Preview

See the lowercase g caron (ǧ) in Skolt Sami and linguistic contexts:

Large glyphǧ
DiacriticCaron (háček / wedge)
Used inSkolt Sami, Romani, and linguistic transcription
Not the same asğ (g breve, U+011F) or plain g
Numeric refs&#x01E7; &#487; \01E7

🧠 How It Works

1

Hexadecimal Code

&#x01E7; uses the Unicode hexadecimal value 01E7 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01E7 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+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

Skolt Sami orthography and related Uralic language content.

🔤 Romani

Romani language content and transliteration systems using the caron.

🔬 Linguistics

Phonetic notation, linguistic papers, and academic writing.

📚 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 &#487; or &#x01E7; 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 ğ (&gbreve;) or plain g when ǧ is required
  • Put CSS escape \01E7 in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Confuse ǧ with other g variants (breve, acute, plain letter)

Key Takeaways

1

Three references render ǧ (no named entity)

&#x01E7; &#487;
2

For CSS stylesheets, use the escape in the content property

\01E7
3

Unicode U+01E7 — LATIN SMALL LETTER G WITH CARON

4

Used in Skolt Sami, Romani, and linguistic transcription (Latin Extended-B)

❓ Frequently Asked Questions

Use &#x01E7; (hex), &#487; (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.
In Skolt Sami and Romani language content, linguistic and phonetic transcription, language learning and dictionary sites, and any content that requires this character for correct orthography or transliteration.
Named HTML entities are typically reserved for ASCII, Latin-1, and common characters. ǧ is in the Latin Extended-B block and has no predefined named entity. Use &#x01E7;, &#487;, or \01E7 instead.
ǧ (U+01E7) has a caron (háček) and is used in Skolt Sami, Romani, etc. ğ (U+011F, &gbreve;) 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.

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