HTML Entity for Uppercase G Stroke (Ǥ)

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

What You'll Learn

How to display the uppercase 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+01E4 (LATIN CAPITAL LETTER G WITH STROKE) in the Latin Extended-B block.

Render it with Ǥ, Ǥ, or CSS escape \01E4. There is no named HTML entity for this character.

⚡ Quick Reference — Uppercase G Stroke Entity

Unicode U+01E4

Latin Extended-B

Hex Code Ǥ

Hexadecimal reference

HTML Code Ǥ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

The uppercase g stroke (Ǥ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:

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

👀 Live Preview

See the uppercase g stroke (Ǥ) in orthographic and typographic contexts:

Large glyphǤ
Case pairǤ (U+01E4) / ǥ (U+01E5)
Language useSkolt Sami orthography (capital G with horizontal stroke)
Not the same asplain G (U+0047)  |  Ĝ (g circumflex)  |  Ǧ (g caron)
Numeric refs&#x01E4; &#484; \01E4

🧠 How It Works

1

Hexadecimal Code

&#x01E4; uses the Unicode hexadecimal value 01E4 to display the uppercase g stroke. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01E4 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+01E4 sits in Latin Extended-B. There is no named HTML entity. Lowercase pair: U+01E5 (ǥ). Do not confuse with plain G (U+0047).

Use Cases

The uppercase g stroke (Ǥ) is commonly used in:

🌐 Skolt Sami

Native orthography and language materials requiring the capital g with horizontal stroke.

📚 Linguistic content

Language research, documentation, and academic papers studying extended Latin characters.

🎤 Phonetic transcription

Phonetic guides and transliteration systems using the capital g stroke letter.

📄 Academic papers

Scholarly publications and linguistic databases requiring the capital g stroke character.

📖 Language learning

Educational websites and apps teaching Sami and other languages using this letter.

⚙ Font testing

Character set demonstrations and Unicode showcases for Latin Extended-B coverage.

📚 Dictionary apps

Dictionary interfaces and translation tools needing accurate Sami character representation.

💡 Best Practices

Do

  • Use &#484; or &#x01E4; 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)
  • Pair with lowercase ǥ (U+01E5) when showing Skolt Sami case forms
  • Pick one numeric style (hex or decimal) per project for consistency

Don’t

  • Assume a named entity exists—there is none for Ǥ
  • Substitute plain G when Ǥ is required in Skolt Sami text
  • Put CSS escape \01E4 in HTML text nodes
  • Use padded Unicode notation like U+001E4—the correct value is U+01E4
  • Use \001E4 in CSS—the correct escape is \01E4

Key Takeaways

1

Three references render Ǥ (no named entity)

&#x01E4; &#484;
2

For CSS stylesheets, use the escape in the content property

\01E4
3

Unicode U+01E4 — LATIN CAPITAL LETTER G WITH STROKE

4

Latin Extended-B; lowercase pair is ǥ (U+01E5) in Skolt Sami

❓ Frequently Asked Questions

Use &#x01E4; (hex), &#484; (decimal), or \01E4 in CSS content. There is no named HTML entity for this character.
U+01E4 (LATIN CAPITAL LETTER G WITH STROKE). Latin Extended-B block. Hex 01E4, decimal 484. Used in Skolt Sami orthography and some linguistic contexts.
In Skolt Sami language content, linguistic and phonetic transcription, dictionary sites, academic texts, and any content requiring the capital g with stroke glyph.
HTML code (&#484; or &#x01E4;) is used in HTML content. The CSS entity (\01E4) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǥ but in different contexts.
No. There is no named HTML entity for Ǥ. Use &#484; or &#x01E4; in HTML, or \01E4 in CSS. The lowercase pair is ǥ (U+01E5, lowercase g stroke).

Explore More HTML Entities!

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