HTML Entity for Uppercase G Hook (Ɠ)

What You'll Learn
How to display the uppercase g with hook (Ɠ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0193 (LATIN CAPITAL LETTER G WITH HOOK), a capital Latin letter with a hook tail used in linguistic notation and some African orthographies. It sits in the Latin Extended-B block.
Render it with Ɠ, Ɠ, or CSS escape \0193. There is no named HTML entity for this character.
⚡ Quick Reference — Uppercase G Hook Entity
U+0193Latin Extended-B
ƓHexadecimal reference
ƓDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0193
Hex code Ɠ
HTML code Ɠ
Named entity (none)
CSS code \0193
Meaning Latin capital letter g with hook
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase g hook (Ɠ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0193";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɠ</p>
<p>Symbol (decimal): Ɠ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase g hook (Ɠ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:
👀 Live Preview
See the uppercase g hook (Ɠ) in linguistic and typographic contexts:
🧠 How It Works
Hexadecimal Code
Ɠ uses the Unicode hexadecimal value 0193 to display the uppercase g hook. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɠ uses the decimal Unicode value 403 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0193 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+0193 sits in Latin Extended-B. There is no named HTML entity for Ɠ. Do not confuse with plain G (U+0047) or IPA ɠ (U+0260).
Use Cases
The uppercase g hook (Ɠ) is commonly used in:
Language research, documentation, and academic papers studying extended Latin characters with hooks.
Phonetic guides and pronunciation references using the capital hooked g letter.
Typographic designs, font demonstrations, and text formatting requiring extended Latin glyphs.
Scholarly publications and linguistic databases requiring the capital g hook character.
Writing systems and language materials that use the capital g with hook in native orthographies.
Character set demonstrations and Unicode showcases for Latin Extended-B coverage.
Unicode tutorials and character encoding guides explaining hooked Latin letters.
💡 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 Latin Extended-B (U+0180–U+024F)
- Distinguish Ɠ (g hook) from plain
G(U+0047) and IPA ɠ (U+0260) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for Ɠ
- Substitute plain
Gor IPA ɠ when Ɠ is required - Put CSS escape
\0193in HTML text nodes - Use padded Unicode notation like U+00193—the correct value is
U+0193 - Use
\00193in CSS—the correct escape is\0193
Key Takeaways
Three references render Ɠ (no named entity)
Ɠ ƓFor CSS stylesheets, use the escape in the content property
\0193Unicode U+0193 — LATIN CAPITAL LETTER G WITH HOOK
Latin Extended-B; related IPA glyph ɠ is U+0260 (different block)
Previous: Uppercase G Dot Above (Ġ) Next: Uppercase G Latin
❓ Frequently Asked Questions
Ɠ (hex), Ɠ (decimal), or \0193 in CSS content. There is no named HTML entity for this character.U+0193 (LATIN CAPITAL LETTER G WITH HOOK). Latin Extended-B block. Hex 0193, decimal 403. Used in linguistic studies, phonetic notation, and some African orthographies.Ɠ or Ɠ) is used in HTML content. The CSS entity (\0193) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ɠ but in different contexts.Ɠ or Ɠ in HTML, or \0193 in CSS. The IPA lowercase g hook ɠ (U+0260) is a separate character in IPA Extensions.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, phonetic symbols, and more.
8 people found this page helpful
