HTML Entity for Lowercase Q Hook (ʠ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+02A0

What Is the Lowercase Q Hook Entity?

Lowercase q with hook (ʠ) is the Unicode character at U+02A0 in IPA Extensions. Official name: LATIN SMALL LETTER Q WITH HOOK — the letter q with a hook, used in IPA for the voiceless uvular implosive.

Remember
Character     ʠ
Unicode       U+02A0
Hex entity    ʠ
Decimal       ʠ
CSS escape    \02A0
Named entity  (none)
Not the same  q (U+0071) · ɋ (hook tail)

Prefer ʠ or ʠ in HTML when you need an entity. You can also type ʠ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entityʠHTML markup
Decimal entityʠHTML markup
Direct characterʠHTML text (UTF-8)
CSS escape\02A0Stylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Need an entity in HTML sourceʠ or ʠ
IPA / phonetic transcriptionʠ → ʠ (voiceless uvular implosive)
Everyday letter qType q (U+0071) — see Lowercase Q
Q with hook tail (ɋ)See Q Hook Tail — not U+02A0
Generated text via ::before / ::aftercontent: "\02A0"
Looking for a named entityDoes not exist — use numeric form

Live Preview

Glyph alone, in a sample line, and next to related forms.

Glyph ʠ
Large glyph ʠ
Sample ʠ · IPA / phonetic notation
Compared ʠ   q   ɋ
With entities Hex: ʠ | Decimal: ʠ

Complete HTML Example

One page that shows ʠ with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ʠ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase Q Hook (ʠ) in HTML</title>
  <style>
    #point::after {
      content: "\02A0";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2A0;</p>
  <p>Built with Decimal: &#672;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ʠ</p>
  <p>IPA sample: [&#x2A0;]</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+02A0 → &#x2A0; in HTML. The browser turns it into ʠ.

2. Decimal: same code point as 672 → &#672;. Same result as hex.

3. CSS: use \02A0 in content (not an HTML entity). #point::after appends ʠ.

4. Typed: paste ʠ in a UTF-8 document for IPA or linguistic text. There is no named entity — numeric form is required when you need an entity.

Pitfalls & Tips

Common mistakes when working with lowercase q with hook.

Named?

No named entity

HTML5 does not define a named entity for U+02A0. Use &#x2A0; or &#672;.

q

Not plain q

Plain q is U+0071. ʠ adds a hook for IPA — different letter, different code point.

ɋ

Not hook tail

ɋ (U+024B) is q with hook tail — a different Extended-B letter. See Q Hook Tail.

Fonts

Need IPA Extensions coverage

Some fonts omit IPA Extensions. Prefer a font that includes U+02A0 for reliable glyphs.

CSS

Pad the CSS escape

Prefer \02A0 (four hex digits). A short \2A0 can swallow the next hex digit if one follows immediately.

CSS vs HTML

Do not mix escapes

\02A0 belongs in CSS strings. &#x2A0; / &#672; belong in HTML.

Semicolon

End references

Always finish entities with ; — write &#x2A0;, not &#x2A0.

Browser Support

Lowercase q with hook (U+02A0) and its entity forms (&#x2A0;, &#672;, CSS \\02A0) are supported in all mainstream browsers. Visible glyphs depend on IPA Extensions font coverage.

✓ Universal support

Lowercase Q Hook (&#x02A0;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+02A0 Full support

Bottom line: Prefer &#x2A0; or &#672; in HTML when encoding must be explicit, and \\02A0 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: lowercase q with hook is U+02A0 (decimal 672) — glyph ʠ.
  • HTML: use &#x2A0; or &#672; — no named entity.
  • CSS: use \02A0 inside content for generated text.
  • Watch out: ʠ ≠ plain q ≠ ɋ.

One line: U+02A0 → &#x2A0; / &#672; / CSS \02A0 (no named entity).

Frequently Asked Questions

Use &#x2A0; (hex), &#672; (decimal), type ʠ in UTF-8, or the CSS escape \02A0 in content. There is no HTML5 named entity for U+02A0.
U+02A0 (LATIN SMALL LETTER Q WITH HOOK). Hex 2A0, decimal 672. It belongs to IPA Extensions (U+0250–U+02AF).
No. HTML5 does not define a named entity for this character. Use numeric references like &#672; or &#x2A0; when you need an entity form.
Use it for IPA phonetic transcription of the voiceless uvular implosive and linguistic content that needs ʠ. Prefer plain q for ordinary English words.
HTML entities (&#672; or &#x2A0;) go in markup. The CSS escape \02A0 goes in stylesheet strings (usually content on ::before/::after).
No. Plain q is U+0071. Q with hook tail ɋ is U+024B. ʠ (U+02A0) is a distinct IPA Extensions letter.

Did you know?

Lowercase q with hook is Unicode U+02A0 (decimal 672) — LATIN SMALL LETTER Q WITH HOOK in IPA Extensions. HTML5 has no named entity for it — use &#x2A0; or &#672;. In IPA it marks the voiceless uvular implosive. It is not the same as q with hook tail (ɋ, U+024B).

Next: Lowercase Q Hook Tail

Learn the HTML entity for q with hook tail (ɋ).

Lowercase Q hook tail tutorial →

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