HTML Entity for Uppercase G Latin Hook (ʛ)

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

What You'll Learn

How to display the uppercase g latin hook (ʛ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+029B (LATIN LETTER SMALL CAPITAL G WITH HOOK)—an IPA phonetic symbol used as the capital form of hooked g in phonetic notation. It sits in the IPA Extensions block.

Render it with ʛ, ʛ, or CSS escape \029B. There is no named HTML entity for this character. In IPA it represents the voiced uvular implosive.

⚡ Quick Reference — Uppercase G Latin Hook Entity

Unicode U+029B

IPA Extensions

Hex Code ʛ

Hexadecimal reference

HTML Code ʛ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+029B
Hex code       ʛ
HTML code      ʛ
Named entity   (none)
CSS code       \029B
Meaning        Latin letter small capital G with hook
IPA use        Voiced uvular implosive
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

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

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

🌐 Browser Support

The uppercase g latin hook (ʛ) renders correctly in modern browsers when UTF-8 is used and the font supports IPA Extensions:

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

👀 Live Preview

See the uppercase g latin hook (ʛ) in phonetic and typographic contexts:

Large glyphʛ
IPA meaningVoiced uvular implosive (International Phonetic Alphabet)
Related IPA Gɢ (U+0262, uvular stop)  |  ɠ (U+0260, velar implosive)
Not the same asƓ (U+0193, Latin Extended-B g hook)  |  plain G (U+0047)
Numeric refs&#x029B; &#667; \029B

🧠 How It Works

1

Hexadecimal Code

&#x029B; uses the Unicode hexadecimal value 029B to display the uppercase g latin hook. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#667; uses the decimal Unicode value 667 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

\029B 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+029B sits in IPA Extensions. There is no named HTML entity. Do not confuse with ɢ (U+0262, uvular stop) or ɠ (U+0260, velar implosive).

Use Cases

The uppercase g latin hook (ʛ) is commonly used in:

🎤 Phonetic transcription

IPA notation, pronunciation guides, and linguistic research requiring the voiced uvular implosive symbol.

📚 IPA notation

International Phonetic Alphabet documentation, textbooks, and academic papers with accurate phonetic symbols.

📚 Linguistic content

Language research papers, documentation, and databases requiring proper IPA character representation.

📄 Academic papers

Scholarly publications and phonetic analysis documents discussing implosive consonants.

📖 Language learning

Educational websites and apps that teach phonetic notation and pronunciation.

⚙ Font testing

Character set demonstrations and Unicode showcases for IPA Extensions coverage.

📚 Dictionary apps

Dictionary interfaces and pronunciation tools needing accurate phonetic glyphs.

💡 Best Practices

Do

  • Use &#667; or &#x029B; 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 ʛ (uvular implosive) from ɢ (uvular stop) and ɠ (velar implosive)
  • Pick one numeric style (hex or decimal) per project for consistency

Don’t

  • Assume a named entity exists—there is none for ʛ
  • Substitute ɢ or ɠ when ʛ is required in IPA text
  • Put CSS escape \029B in HTML text nodes
  • Use padded Unicode notation like U+0029B—the correct value is U+029B
  • Use \0029B in CSS—the correct escape is \029B

Key Takeaways

1

Three references render ʛ (no named entity)

&#x029B; &#667;
2

For CSS stylesheets, use the escape in the content property

\029B
3

Unicode U+029B — LATIN LETTER SMALL CAPITAL G WITH HOOK

4

IPA Extensions; represents the voiced uvular implosive in phonetic notation

❓ Frequently Asked Questions

Use &#x029B; (hex), &#667; (decimal), or \029B in CSS content. There is no named HTML entity for this character.
U+029B (LATIN LETTER SMALL CAPITAL G WITH HOOK). IPA Extensions block. Hex 029B, decimal 667. Used in IPA phonetic notation for the voiced uvular implosive.
In phonetic transcriptions, IPA notation, linguistic content, academic texts, language learning materials, and any content requiring the IPA small capital G with hook glyph.
HTML code (&#667; or &#x029B;) is used in HTML content. The CSS entity (\029B) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ʛ but in different contexts.
ʛ represents the voiced uvular implosive in the International Phonetic Alphabet (IPA). It is part of the IPA Extensions block and is used in linguistic research, phonetic documentation, and academic texts that require precise phonetic representation.

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