HTML Entity for Uppercase Q Hook Tail (Ɋ)

What You'll Learn
How to display the uppercase Q with hook tail (Ɋ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+024A in the Latin Extended-B block—a single precomposed glyph with a hook on the tail of the letter Q.
Render it with Ɋ, Ɋ, or CSS escape \024A. There is no named HTML entity. In UTF-8 documents you can also type Ɋ directly. It appears in phonetic and linguistic notation and some African orthographies—not to be confused with plain Q (U+0051) or ℚ (double-struck).
⚡ Quick Reference — Uppercase Q Hook Tail Entity
U+024ALatin Extended-B
ɊHexadecimal reference
ɊDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+024A
Hex code Ɋ
HTML code Ɋ
Named entity (none)
CSS code \024A
Meaning Latin capital letter Q with hook tail
Related U+024B = ɋ (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase Q with hook tail (Ɋ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\024A";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɋ</p>
<p>Symbol (decimal): Ɋ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase Q with hook tail (Ɋ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase Q with hook tail (Ɋ) in notation contexts:
🧠 How It Works
Hexadecimal Code
Ɋ uses the Unicode hexadecimal value 024A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɋ uses the decimal Unicode value 586 to display the same character. A common method when a numeric reference is needed.
CSS Entity
\024A 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+024A sits in Latin Extended-B. Lowercase equivalent: U+024B (ɋ). Do not confuse with plain Q (U+0051). There is no named HTML entity.
Use Cases
The uppercase Q with hook tail (Ɋ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the Q-with-hook-tail character.
Extended Latin orthography in African language scripts that use the hooked Q variant.
Websites requiring correct rendering of Latin Extended-B for linguistic and language content.
Books, articles, and editorial content with phonetic scripts or specialized terminology using Ɋ.
Extended Latin orthographic systems where the hooked Q variant is required for accuracy.
Language courses and linguistic tutorials demonstrating extended Latin letter forms.
User input that may contain Ɋ; use UTF-8 encoding and numeric entities as needed.
💡 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 Q-with-hook-tail character
- Choose fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ɋ from
Q(U+0051) and ℚ (double-struck)
Don’t
- Substitute plain
Qwhen Ɋ is the correct orthographic or phonetic character - Confuse Ɋ with ℚ (double-struck rationals) or ɋ (lowercase hook tail)
- Expect a named HTML entity—none exists for Ɋ
- Put CSS escape
\024Ain HTML text nodes - Use
\0024Ain CSS—the correct escape is\024A
Key Takeaways
Three references render Ɋ (no named entity)
Ɋ ɊFor CSS stylesheets, use the escape in the content property
\024AUnicode U+024A — LATIN CAPITAL LETTER Q WITH HOOK TAIL
Phonetic & linguistic notation; lowercase is ɋ (U+024B)
Previous: Uppercase Q Double Struck Capital (ℚ) Next: Uppercase R
❓ Frequently Asked Questions
Ɋ (hex), Ɋ (decimal), or \024A in CSS content. There is no named HTML entity for Ɋ. In UTF-8 you can also type Ɋ directly.U+024A (LATIN CAPITAL LETTER Q WITH HOOK TAIL). Latin Extended-B block. Hex 024A, decimal 586. Used in phonetic and linguistic notation. Lowercase form is U+024B (ɋ).Ɋ or Ɋ, or the CSS entity \024A. In UTF-8 pages you can type Ɋ directly.Q (U+0051) is the standard Latin letter. ℚ (U+211A) is double-struck Q for rationals—a different character entirely.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, phonetic symbols, and more.
8 people found this page helpful
