HTML Entity for Uppercase G Stroke (Ǥ)

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
U+01E4Latin Extended-B
ǤHexadecimal reference
ǤDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing the uppercase g stroke (Ǥ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01E4";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǥ</p>
<p>Symbol (decimal): Ǥ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase g stroke (Ǥ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the uppercase g stroke (Ǥ) in orthographic and typographic contexts:
🧠 How It Works
Hexadecimal Code
Ǥ uses the Unicode hexadecimal value 01E4 to display the uppercase g stroke. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǥ uses the decimal Unicode value 484 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01E4 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+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:
Native orthography and language materials requiring the capital g with horizontal stroke.
Language research, documentation, and academic papers studying extended Latin characters.
Phonetic guides and transliteration systems using the capital g stroke letter.
Scholarly publications and linguistic databases requiring the capital g stroke character.
Educational websites and apps teaching Sami and other languages using this letter.
Character set demonstrations and Unicode showcases for Latin Extended-B coverage.
Dictionary interfaces and translation tools needing accurate Sami character representation.
💡 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)
- 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
Gwhen Ǥ is required in Skolt Sami text - Put CSS escape
\01E4in HTML text nodes - Use padded Unicode notation like U+001E4—the correct value is
U+01E4 - Use
\001E4in CSS—the correct escape is\01E4
Key Takeaways
Three references render Ǥ (no named entity)
Ǥ ǤFor CSS stylesheets, use the escape in the content property
\01E4Unicode U+01E4 — LATIN CAPITAL LETTER G WITH STROKE
Latin Extended-B; lowercase pair is ǥ (U+01E5) in Skolt Sami
Previous: Uppercase G Latin Hook (ʛ) Next: Uppercase G Turned Sanserif
❓ Frequently Asked Questions
Ǥ (hex), Ǥ (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.Ǥ or Ǥ) 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.Ǥ or Ǥ 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.
8 people found this page helpful
