HTML Entity for Lowercase Q Hook (ʠ)

What You'll Learn
How to display the lowercase q with hook (ʠ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+02A0 in the IPA Extensions block—a single precomposed glyph with a hook attached to the letter q.
Render it with ʠ, ʠ, or CSS escape \02A0. There is no named HTML entity. In UTF-8 documents you can also type ʠ directly. It appears in IPA phonetic notation (voiceless uvular implosive) and linguistic documentation—not to be confused with plain q (U+0071) or ƣ (U+01A3, a separate Latin Extended-B letter).
⚡ Quick Reference — Lowercase Q Hook Entity
U+02A0IPA Extensions
ʠHexadecimal reference
ʠDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+02A0
Hex code ʠ
HTML code ʠ
Named entity (none)
CSS code \02A0
Meaning Latin small letter q with hook (IPA)
Related U+01A3 = ƣ (Latin Extended-B, distinct)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase q with hook (ʠ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\02A0";
}
</style>
</head>
<body>
<p>Symbol (hex): ʠ</p>
<p>Symbol (decimal): ʠ</p>
<p>Symbol (direct): ʠ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase q with hook (ʠ) is supported in all modern browsers as part of IPA Extensions:
👀 Live Preview
See the lowercase q with hook (ʠ) in phonetic contexts:
🧠 How It Works
Hexadecimal Code
ʠ uses the Unicode hexadecimal value 02A0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʠ uses the decimal Unicode value 672 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type ʠ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this symbol.
CSS Entity
\02A0 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: ʠ. Unicode U+02A0 sits in IPA Extensions. Do not confuse with plain q (U+0071), ƣ (U+01A3 in Latin Extended-B), or ƥ (p with hook).
Use Cases
The lowercase q with hook (ʠ) is commonly used in:
International Phonetic Alphabet transcription for the voiceless uvular implosive.
Phonetic dictionaries, language documentation, and academic papers requiring precise IPA symbols.
Language-learning courses and phonetics tutorials that teach correct IPA characters.
Scholarly papers, Unicode references, and character-set documentation that display ʠ correctly.
Font specimens showcasing IPA Extensions support in design systems.
Using U+02A0 ensures assistive technologies interpret the phonetic symbol correctly.
When building HTML from encoded text, ʠ or ʠ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ʠ directly in UTF-8 source
- Use numeric references (
ʠorʠ) when escaping is required - Use ʠ only when the source text specifies the IPA q-with-hook symbol
- Choose fonts that support IPA Extensions (U+0250–U+02AF)
- Distinguish ʠ from plain
q(U+0071) and from ƣ (U+01A3)
Don’t
- Substitute plain
qwhen ʠ is the correct phonetic character - Use ʠ in normal English or Latin text where q is intended
- Expect a named HTML entity—none exists for ʠ
- Put CSS escape
\02A0in HTML text nodes - Confuse U+02A0 (IPA ʠ) with U+01A3 (Latin Extended-B ƣ)
Key Takeaways
Type ʠ directly, or use hex/decimal references
ʠ ʠFor CSS stylesheets, use the escape in the content property
\02A0Unicode U+02A0 — LATIN SMALL LETTER Q WITH HOOK (IPA)
IPA phonetic notation; distinct from U+01A3 (ƣ) in Latin Extended-B
Previous: Lowercase Q (q) Next: Lowercase Q Hook Tail
❓ Frequently Asked Questions
ʠ (hex), ʠ (decimal), or \02A0 in CSS content. There is no named HTML entity for ʠ. In UTF-8 you can also type ʠ directly.U+02A0 (LATIN SMALL LETTER Q WITH HOOK). IPA Extensions block. Hex 02A0, decimal 672. Used in IPA for the voiceless uvular implosive. Not the same as U+01A3 (ƣ) in Latin Extended-B.ʠ or ʠ, or the CSS entity \02A0. In UTF-8 pages you can type ʠ directly.q (U+0071) is the standard Latin lowercase letter. They are not interchangeable in linguistic or encoded text.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
