HTML Entity for Lowercase G Stroke (ǥ)

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

What You'll Learn

How to display the lowercase g with stroke (ǥ) in HTML using hexadecimal, decimal, and CSS escape methods. This precomposed character has a horizontal stroke through the letter g and is used in Skolt Sami orthography and in some linguistic or transliteration systems. It is U+01E5 in the Latin Extended-B block.

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

⚡ Quick Reference — Lowercase G Stroke Entity

Unicode U+01E5

Latin Extended-B

Hex Code ǥ

Hexadecimal reference

HTML Code ǥ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01E5
Hex code       ǥ
HTML code      ǥ
Named entity   (none)
CSS code       \01E5
Meaning        Latin small letter g with stroke
Related        U+01E4 = G stroke (uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

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

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

🌐 Browser Support

The lowercase g stroke (ǥ) 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 stroke (ǥ) in Skolt Sami and linguistic contexts:

Large glyphǥ
DiacriticHorizontal stroke through g
Used inSkolt Sami orthography
Not the same asǧ (g caron) or ĝ (g circumflex)
Numeric refs&#x01E5; &#485; \01E5

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01E5 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+01E5 sits in Latin Extended-B. Do not confuse ǥ (g stroke) with ǧ (g caron) or ĝ (g circumflex). There is no named HTML entity.

Use Cases

The lowercase g stroke (ǥ) is commonly used in:

📜 Skolt Sami

Skolt Sami orthography and related Uralic language content.

🔤 Transliteration

Transliteration systems and linguistic notation using the stroke diacritic.

🔬 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 rendering.

♿ Accessibility

Proper encoding helps screen readers handle ǥ in localized text.

🌐 International sites

Skolt Sami and linguistic sites with proper character encoding.

💡 Best Practices

Do

  • Use &#485; or &#x01E5; 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 stroke) from ǧ (g caron) and ĝ (g circumflex)

Don’t

  • Assume a named entity exists—there is none for ǥ
  • Substitute plain g or other g variants when ǥ is required
  • Put CSS escape \01E5 in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Confuse ǥ with ǧ (caron) or ĝ (circumflex)

Key Takeaways

1

Three references render ǥ (no named entity)

&#x01E5; &#485;
2

For CSS stylesheets, use the escape in the content property

\01E5
3

Unicode U+01E5 — LATIN SMALL LETTER G WITH STROKE

4

Used in Skolt Sami orthography (Latin Extended-B)

❓ Frequently Asked Questions

Use &#x01E5; (hex), &#485; (decimal), or \01E5 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+01E5 (LATIN SMALL LETTER G WITH STROKE). Latin Extended-B block. Hex 01E5, decimal 485. Used in Skolt Sami and in some linguistic or transliteration contexts.
In Skolt Sami 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 &#x01E5;, &#485;, or \01E5 instead.
ǥ (U+01E5) has a horizontal stroke and is used in Skolt Sami. ǧ (U+01E7) has a caron and is used in Skolt Sami and Romani. ĝ (U+011D, &gcirc;) has a circumflex and is used in Esperanto. 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