HTML Entity for Uppercase G Acute (Ǵ)

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

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

Unicode U+01F4

Latin Extended-B

Hex Code Ǵ

Hexadecimal reference

HTML Code Ǵ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

A simple example showing the uppercase G acute (Ǵ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The uppercase G acute (Ǵ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B characters:

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

👀 Live Preview

See the uppercase G acute (Ǵ) in transliteration and linguistic contexts:

Large glyphǴ
G variantsG   Ǵ   ǵ
Lowercase pair&gacute; = ǵ (U+01F5)
Not the same asplain G (U+0047)  |  Ğ (g breve)  |  ğ (g breve lowercase)
Numeric refs&#x01F4; &#500; \01F4

🧠 How It Works

1

Hexadecimal Code

&#x01F4; uses the Unicode hexadecimal value 01F4 to display the uppercase G acute. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01F4 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+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 &gacute; only for the lowercase ǵ.

Use Cases

The uppercase G acute (Ǵ) is commonly used in:

🔤 Linguistics

Phonetic notation, linguistic papers, and academic writing with accented characters.

📝 Phonetic transcription

IPA and phonetic systems requiring precise representation of G with acute accent.

🇬🇦 Macedonian

Official transliteration systems pairing uppercase Ǵ with lowercase ǵ.

🇷🇸 Serbian

Serbian transliteration and linguistic content using the G acute character.

📚 Language learning

Dictionaries and courses showing correct spelling and transliteration.

📄 Academic publishing

Scholarly publications referencing Latin Extended-B diacritical marks.

🌐 Multilingual sites

Websites supporting languages and transliteration systems that use Ǵ.

💡 Best Practices

Do

  • Use &#500; or &#x01F4; 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 &gacute; 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 &gacute;
  • Substitute plain G or Ğ (g breve) when Ǵ is required
  • Put CSS escape \01F4 in HTML text nodes
  • Use padded Unicode notation like U+001F4—the correct value is U+01F4
  • Use \001F4 in CSS—the correct escape is \01F4

Key Takeaways

1

Three references render Ǵ (no named entity)

&#x01F4; &#500;
2

For CSS stylesheets, use the escape in the content property

\01F4
3

Unicode U+01F4 — LATIN CAPITAL LETTER G WITH ACUTE

4

Lowercase pair: U+01F5 via &gacute;

❓ Frequently Asked Questions

Use &#x01F4; (hex), &#500; (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.
In linguistic content, phonetic transcriptions, Macedonian and Serbian transliteration, academic texts, language learning materials, and multilingual websites requiring the acute diacritical mark on G.
HTML code (&#500; or &#x01F4;) 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.
The uppercase G acute (Ǵ) appears in linguistic contexts and phonetic notation systems. The acute accent modifies the pronunciation of G and may appear in transliteration, linguistic research, academic texts, and specialized typography requiring precise diacritical marks.

Explore More HTML Entities!

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