HTML Entity for Lowercase G Acute (ǵ)

What You'll Learn
How to display the lowercase g with acute accent (ǵ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This precomposed character is used in Macedonian and Serbian transliteration and in linguistic notation. It is U+01F5 in the Latin Extended-B block.
Render it with ǵ, ǵ, ǵ, or CSS escape \1F5. The named entity ǵ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase G Acute Entity
U+01F5Latin Extended-B
ǵHexadecimal reference
ǵDecimal reference
ǵMost readable option
Name Value
──────────── ──────────
Unicode U+01F5
Hex code ǵ
HTML code ǵ
Named entity ǵ
CSS code \1F5
Meaning Latin small letter g with acute
Related U+01F4 = G acute (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase g acute (ǵ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\1F5";
}
</style>
</head>
<body>
<p>Symbol (hex): ǵ</p>
<p>Symbol (decimal): ǵ</p>
<p>Symbol (named): ǵ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase g acute (ǵ) and the named entity ǵ are supported in all modern browsers:
👀 Live Preview
See the lowercase g acute (ǵ) in transliteration and linguistic contexts:
🧠 How It Works
Hexadecimal Code
ǵ uses the Unicode hexadecimal value 1F5 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǵ uses the decimal Unicode value 501 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ǵ is the standard named entity for ǵ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\1F5 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ǵ. Unicode U+01F5 sits in Latin Extended-B. Do not confuse ǵ (g acute) with plain g (U+0067) or ğ (g breve). The named entity ǵ is often the most readable choice.
Use Cases
The lowercase g acute (ǵ) is commonly used in:
Official transliteration systems for Macedonian text requiring ǵ.
Serbian transliteration and linguistic content using the g acute character.
Phonetic notation, linguistic papers, and academic writing with accented characters.
Foreign language and Slavic language websites with correct orthography.
Dictionaries and courses showing correct spelling and transliteration.
Scholarly and typographic content with correct encoding for ǵ.
Accept and display ǵ in inputs and search for transliterated text.
💡 Best Practices
Do
- Use
ǵin HTML when possible for readability - Serve pages as UTF-8; you can also type ǵ directly in UTF-8 source
- Use the same method (named or numeric) consistently within a document
- Use fonts that support Latin Extended-B characters
- Distinguish ǵ (g acute) from plain
g(U+0067) and ğ (g breve)
Don’t
- Use plain
gorgwhen ǵ is required - Put CSS escape
\1F5in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Confuse ǵ with other g variants (breve, circumflex, plain letter)
- Mix entity styles randomly in one file
Key Takeaways
Four references render ǵ; named entity is most readable
ǵ ǵ ǵFor CSS stylesheets, use the escape in the content property
\1F5Unicode U+01F5 — LATIN SMALL LETTER G WITH ACUTE
Used in Macedonian and Serbian transliteration (Latin Extended-B)
Previous: Lowercase G Next: Lowercase G Breve
❓ Frequently Asked Questions
ǵ (named), ǵ (hex), ǵ (decimal), or \1F5 in CSS content. All four methods render ǵ correctly.U+01F5 (LATIN SMALL LETTER G WITH ACUTE). Latin Extended-B block. Hex 1F5, decimal 501. Used in Macedonian and Serbian transliteration.U+0067 (Basic Latin). The g acute ǵ is U+01F5 (Latin Extended-B) with an acute accent. Use ǵ or ǵ when you need ǵ, and g or g for the regular letter.U+01F4. In HTML use Ǵ or Ǵ. There is no standard named entity for the uppercase form; use numeric or CSS codes for Ǵ.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
