HTML Entity for Uppercase G Hook (Ɠ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0193

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

Unicode U+0193

Latin Extended-B

Hex Code Ɠ

Hexadecimal reference

HTML Code Ɠ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the uppercase g hook (Ɠ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0193";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0193;</p>
<p>Symbol (decimal): &#403;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase g hook (Ɠ) renders correctly in modern browsers when UTF-8 is used and the font supports Latin Extended-B:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase g hook (Ɠ) in linguistic and typographic contexts:

Large glyphƓ
Related glyphɠ (U+0260, IPA g hook) — not a case pair of Ɠ
Not the same asplain G (U+0047)  |  Ġ (g dot above)  |  Ƒ (f hook)
Numeric refs&#x0193; &#403; \0193

🧠 How It Works

1

Hexadecimal Code

&#x0193; uses the Unicode hexadecimal value 0193 to display the uppercase g hook. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#403; uses the decimal Unicode value 403 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

\0193 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

📚 Linguistic studies

Language research, documentation, and academic papers studying extended Latin characters with hooks.

🎤 Phonetic transcription

Phonetic guides and pronunciation references using the capital hooked g letter.

🎨 Specialized typography

Typographic designs, font demonstrations, and text formatting requiring extended Latin glyphs.

📄 Academic papers

Scholarly publications and linguistic databases requiring the capital g hook character.

🌐 African orthographies

Writing systems and language materials that use the capital g with hook in native orthographies.

⚙ Font testing

Character set demonstrations and Unicode showcases for Latin Extended-B coverage.

📚 Educational content

Unicode tutorials and character encoding guides explaining hooked Latin letters.

💡 Best Practices

Do

  • Use &#403; or &#x0193; 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 G or IPA ɠ when Ɠ is required
  • Put CSS escape \0193 in HTML text nodes
  • Use padded Unicode notation like U+00193—the correct value is U+0193
  • Use \00193 in CSS—the correct escape is \0193

Key Takeaways

1

Three references render Ɠ (no named entity)

&#x0193; &#403;
2

For CSS stylesheets, use the escape in the content property

\0193
3

Unicode U+0193 — LATIN CAPITAL LETTER G WITH HOOK

4

Latin Extended-B; related IPA glyph ɠ is U+0260 (different block)

❓ Frequently Asked Questions

Use &#x0193; (hex), &#403; (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.
In linguistic studies, phonetic transcriptions, specialized typography, international text, academic papers, and any content requiring the capital g with hook glyph.
HTML code (&#403; or &#x0193;) 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.
No. There is no named HTML entity for Ɠ. Use &#403; or &#x0193; 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful