HTML Entity for Lowercase G Breve (ğ)

What You'll Learn
How to display the lowercase g with breve (ğ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Also called the Turkish soft g (yumuşak g), this precomposed character appears in words like ğün (day), dağ (mountain), and yağmur (rain). It is U+011F in the Latin Extended-A block.
Render it with ğ, ğ, ğ, or CSS escape \011F. The named entity ğ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase G Breve Entity
U+011FLatin Extended-A
ğHexadecimal reference
ğDecimal reference
ğMost readable option
Name Value
──────────── ──────────
Unicode U+011F
Hex code ğ
HTML code ğ
Named entity ğ
CSS code \011F
Meaning Latin small letter g with breve
Related U+011E = G breve (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase g breve (ğ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\011F";
}
</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 breve (ğ) and the named entity ğ are supported in all modern browsers:
👀 Live Preview
See the lowercase g breve (ğ) in Turkish and Azerbaijani contexts:
🧠 How It Works
Hexadecimal Code
ğ uses the Unicode hexadecimal value 011F to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ğ uses the decimal Unicode value 287 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
\011F 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+011F sits in Latin Extended-A. Do not confuse ğ (g breve) with plain g (U+0067) or ǵ (g acute). The named entity ğ is often the most readable choice.
Use Cases
The lowercase g breve (ğ) is commonly used in:
Correct spelling in Turkish text (ğün, dağ, yağmur, değil).
Azerbaijani orthography also uses the soft g character.
Dictionaries and courses showing correct Turkish and Azerbaijani spelling.
Localized websites targeting Turkish or Azerbaijani audiences.
Accept and display ğ in inputs and search for localized text.
Proper encoding helps screen readers handle ğ in Turkish and Azerbaijani text.
Fonts and UI that support Latin Extended-A for localized applications.
💡 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-A characters
- Distinguish ğ (g breve) from plain
g(U+0067) and ǵ (g acute)
Don’t
- Replace ğ with plain
gin Turkish or Azerbaijani content - Put CSS escape
\011Fin HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Confuse ğ with other g variants (acute, 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
\011FUnicode U+011F — LATIN SMALL LETTER G WITH BREVE
Turkish and Azerbaijani soft g (yumuşak g) in Latin Extended-A
Previous: Lowercase G Acute Next: Lowercase G Caron
❓ Frequently Asked Questions
ğ (named), ğ (hex), ğ (decimal), or \011F in CSS content. All four methods render ğ correctly.U+011F (LATIN SMALL LETTER G WITH BREVE). Latin Extended-A block. Hex 011F, decimal 287. Used as the Turkish and Azerbaijani soft g.U+0067 (Basic Latin). The g breve ğ is U+011F (Latin Extended-A) with a breve diacritic representing the Turkish/Azerbaijani soft g sound. Use ğ or ğ when you need ğ, and g or g for the regular letter.U+011E. 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
