HTML Entity for Uppercase G Acute (Ǵ)

What You'll Learn
How to display the uppercase G with acute accent (Ǵ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+01F4 (LATIN CAPITAL LETTER G WITH ACUTE), used in linguistic content, phonetic notation, and transliteration systems. It sits in the Latin Extended-B block.
Render it with Ǵ, Ǵ, or CSS escape \01F4. There is no named HTML entity for this character (unlike the lowercase pair ǵ for ǵ), so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase G Acute Entity
U+01F4Latin Extended-B
ǴHexadecimal reference
ǴDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01F4
Hex code Ǵ
HTML code Ǵ
Named entity (none)
CSS code \01F4
Meaning Latin capital G with acute
Related U+01F5 = ǵ (lowercase pair)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase G acute (Ǵ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01F4";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǵ</p>
<p>Symbol (decimal): Ǵ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase G acute (Ǵ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B characters:
👀 Live Preview
See the uppercase G acute (Ǵ) in transliteration and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ǵ uses the Unicode hexadecimal value 01F4 to display the uppercase G acute. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǵ uses the decimal Unicode value 500 to display the same character. A common method for Latin Extended-B letters.
CSS Entity
\01F4 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+01F4 sits in Latin Extended-B. Do not confuse with plain G (U+0047) or Ğ (g breve). There is no named HTML entity for the uppercase form; use ǵ only for the lowercase ǵ.
Use Cases
The uppercase G acute (Ǵ) is commonly used in:
Phonetic notation, linguistic papers, and academic writing with accented characters.
IPA and phonetic systems requiring precise representation of G with acute accent.
Official transliteration systems pairing uppercase Ǵ with lowercase ǵ.
Serbian transliteration and linguistic content using the G acute character.
Dictionaries and courses showing correct spelling and transliteration.
Scholarly publications referencing Latin Extended-B diacritical marks.
Websites supporting languages and transliteration systems that use Ǵ.
💡 Best Practices
Do
- Use
ǴorǴin HTML (no named entity exists for uppercase) - 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)
- Use
ǵfor lowercase ǵ only—not for Ǵ - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists for Ǵ—only lowercase has
ǵ - Substitute plain
Gor Ğ (g breve) when Ǵ is required - Put CSS escape
\01F4in HTML text nodes - Use padded Unicode notation like U+001F4—the correct value is
U+01F4 - Use
\001F4in CSS—the correct escape is\01F4
Key Takeaways
Three references render Ǵ (no named entity)
Ǵ ǴFor CSS stylesheets, use the escape in the content property
\01F4Unicode U+01F4 — LATIN CAPITAL LETTER G WITH ACUTE
Lowercase pair: U+01F5 via ǵ
Previous: Uppercase G Next: Uppercase G Breve (Ğ)
❓ Frequently Asked Questions
Ǵ (hex), Ǵ (decimal), or \01F4 in CSS content. There is no named HTML entity for this character.U+01F4 (LATIN CAPITAL LETTER G WITH ACUTE). Latin Extended-B block. Hex 01F4, decimal 500. Used in linguistic and phonetic contexts.Ǵ or Ǵ) is used in HTML content. The CSS entity (\01F4) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǵ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — Latin letters, diacritics, and more.
8 people found this page helpful
