HTML Entity for Uppercase G Breve (Ğ)

What You'll Learn
How to display the uppercase G with breve (Ğ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. In Unicode this is U+011E (LATIN CAPITAL LETTER G WITH BREVE), essential for Turkish and Azerbaijani text and linguistic notation. It sits in the Latin Extended-A block.
Render it with Ğ, Ğ, Ğ, or CSS escape \011E. The named entity Ğ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase G Breve Entity
U+011ELatin Extended-A
ĞHexadecimal reference
ĞDecimal reference
ĞMost readable option
Name Value
──────────── ──────────
Unicode U+011E
Hex code Ğ
HTML code Ğ
Named entity Ğ
CSS code \011E
Meaning Latin capital letter G with breve
Related U+011F = ğ (lowercase pair)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase G breve (Ğ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\011E";
}
</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 uppercase G breve (Ğ) and the named entity Ğ are supported in modern browsers:
👀 Live Preview
See the uppercase G breve (Ğ) in Turkish and Azerbaijani contexts:
🧠 How It Works
Hexadecimal Code
Ğ uses the Unicode hexadecimal value 011E to display the uppercase G breve. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ğ uses the decimal Unicode value 286 to display the same character. A common method for Latin Extended-A letters.
Named Entity
Ğ is the standard named entity for Ğ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\011E 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+011E sits in Latin Extended-A. Lowercase pair: U+011F (ğ). Do not confuse with plain G (U+0047), acute Ǵ, or caron Ǧ.
Use Cases
The uppercase G breve (Ğ) is commonly used in:
Turkish language websites, news, and educational content requiring correct Ğ spelling.
Azerbaijani orthography and multilingual content with the soft G uppercase form.
Phonetic notation, linguistic papers, and academic writing with breve diacritics.
Turkish courses, dictionaries, and apps teaching correct G/Ğ usage.
Scholarly publications and typographic content with Latin Extended-A characters.
Internationalized websites supporting Turkish and related language content.
Accept and display Ğ in inputs and search for Turkish-language 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 fonts that support Latin Extended-A (U+0100–U+017F)
- Set
lang="tr"on Turkish content for correct pronunciation hints - Link to the lowercase pair
ğ(ğ) when documenting both forms
Don’t
- Substitute plain
Gwhen Ğ is required for correct Turkish spelling - Confuse breve Ğ with acute Ǵ or caron Ǧ
- Put CSS escape
\011Ein HTML text nodes - Use padded Unicode notation like U+0011E—the correct value is
U+011E - Use
\0011Ein CSS—the correct escape is\011E
Key Takeaways
Four references render Ğ; named entity is most readable
Ğ Ğ ĞFor CSS stylesheets, use the escape in the content property
\011EUnicode U+011E — LATIN CAPITAL LETTER G WITH BREVE
Essential for Turkish and Azerbaijani; pair with ğ (U+011F)
Previous: Uppercase G Acute (Ǵ) Next: Uppercase G Caron
❓ Frequently Asked Questions
Ğ (named), Ğ (hex), Ğ (decimal), or \011E in CSS content. The named entity Ğ is the most readable for HTML content.U+011E (LATIN CAPITAL LETTER G WITH BREVE). Latin Extended-A block. Hex 011E, decimal 286. Used in Turkish, Azerbaijani, and linguistic contexts.Ğ or Ğ) or the named entity Ğ is used in HTML content. The CSS entity (\011E) 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 — Turkish letters, diacritics, and more.
8 people found this page helpful
