HTML Entity for Uppercase G Latin (ɢ)

What You'll Learn
How to display the uppercase g latin (ɢ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0262 (LATIN LETTER SMALL CAPITAL G)—an IPA phonetic symbol used as the capital form of g in phonetic notation. It sits in the IPA Extensions block.
Render it with ɢ, ɢ, or CSS escape \0262. There is no named HTML entity for this character. In IPA it represents the voiced uvular stop.
⚡ Quick Reference — Uppercase G Latin Entity
U+0262IPA Extensions
ɢHexadecimal reference
ɢDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0262
Hex code ɢ
HTML code ɢ
Named entity (none)
CSS code \0262
Meaning Latin letter small capital G
IPA use Voiced uvular stop
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the uppercase g latin (ɢ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0262";
}
</style>
</head>
<body>
<p>Symbol (hex): ɢ</p>
<p>Symbol (decimal): ɢ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase g latin (ɢ) renders correctly in modern browsers when UTF-8 is used and the font supports IPA Extensions:
👀 Live Preview
See the uppercase g latin (ɢ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ɢ uses the Unicode hexadecimal value 0262 to display the uppercase g latin. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɢ uses the decimal Unicode value 610 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\0262 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+0262 sits in IPA Extensions. There is no named HTML entity. Do not confuse with plain G (U+0047) or g (U+0067).
Use Cases
The uppercase g latin (ɢ) is commonly used in:
IPA notation, pronunciation guides, and linguistic research requiring the voiced uvular stop symbol.
International Phonetic Alphabet documentation, textbooks, and academic papers with accurate phonetic symbols.
Language research papers, documentation, and databases requiring proper IPA character representation.
Scholarly publications and phonetic analysis documents discussing uvular consonants.
Educational websites and apps that teach phonetic notation and pronunciation.
Character set demonstrations and Unicode showcases for IPA Extensions coverage.
Dictionary interfaces and pronunciation tools needing accurate phonetic glyphs.
💡 Best Practices
Do
- Use
ɢorɢin HTML (no named entity exists) - Serve pages as UTF-8; you can also type ɢ directly in UTF-8 source
- Use fonts that support IPA Extensions (U+0250–U+02AF), e.g. Doulos SIL or Charis SIL
- Distinguish ɢ (IPA small capital G) from plain
G(U+0047) andg(U+0067) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for ɢ
- Substitute plain
Gorgwhen ɢ is required in IPA text - Put CSS escape
\0262in HTML text nodes - Use padded Unicode notation like U+00262—the correct value is
U+0262 - Use
\00262in CSS—the correct escape is\0262
Key Takeaways
Three references render ɢ (no named entity)
ɢ ɢFor CSS stylesheets, use the escape in the content property
\0262Unicode U+0262 — LATIN LETTER SMALL CAPITAL G
IPA Extensions; represents the voiced uvular stop in phonetic notation
Previous: Uppercase G Hook (Ɠ) Next: Uppercase G Latin Hook
❓ Frequently Asked Questions
ɢ (hex), ɢ (decimal), or \0262 in CSS content. There is no named HTML entity for this character.U+0262 (LATIN LETTER SMALL CAPITAL G). IPA Extensions block. Hex 0262, decimal 610. Used in IPA phonetic notation for the voiced uvular stop.ɢ or ɢ) is used in HTML content. The CSS entity (\0262) 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 — extended Latin, phonetic symbols, and more.
8 people found this page helpful
