HTML Entity for Lowercase Z Retroflex Hook (ʐ)

What You'll Learn
How to display the lowercase z retroflex hook (ʐ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is officially named LATIN SMALL LETTER Z WITH RETROFLEX HOOK—an IPA symbol for the voiced retroflex fricative [ʐ], as in Polish ż [ʐ] or Mandarin r [ʐ] in many transcriptions. It is U+0290 in the IPA Extensions block.
Render it with ʐ, ʐ, or CSS escape \0290. There is no named HTML entity for this character. Do not confuse ʐ (z retroflex hook) with plain z (U+007A), ȥ (z hook), or ż (z dot above).
⚡ Quick Reference — Lowercase Z Retroflex Hook Entity
U+0290IPA Extensions
ʐHexadecimal reference
ʐDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0290
Hex code ʐ
HTML code ʐ
Named entity (none)
CSS code \0290
Meaning Latin small letter z with retroflex hook
Also called z retroflex hook
IPA Voiced retroflex fricative [ʐ]
Related plain z (U+007A) = Latin letter
U+0225 = ȥ (z hook, Latin Extended-B)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase z retroflex hook (ʐ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0290";
}
</style>
</head>
<body>
<p>Symbol (hex): ʐ</p>
<p>Symbol (decimal): ʐ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase z retroflex hook (ʐ) is supported in modern browsers when the font includes IPA Extensions glyphs:
👀 Live Preview
See the lowercase z retroflex hook (ʐ) in phonetic and content contexts:
z (U+007A) is the everyday Latin letter, not IPA retroflex z🧠 How It Works
Hexadecimal Code
ʐ uses the Unicode hexadecimal value 0290 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʐ uses the decimal Unicode value 656 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\0290 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+0290 sits in IPA Extensions. Do not confuse with plain z (U+007A), ȥ (z hook), or ż (z dot above). Use IPA-capable fonts for reliable rendering.
Use Cases
The lowercase z retroflex hook (ʐ) is commonly used in:
Represents the voiced retroflex fricative [ʐ] in International Phonetic Alphabet transcriptions.
Phonetic transcription, dictionaries, and academic papers using IPA consonant symbols.
IPA value of Polish ż [ʐ] in linguistic and language-learning content (distinct from the letter ż in orthography).
Transcribing retroflex consonants in Mandarin and other languages with retroflex articulation.
Language learning apps, pronunciation guides, and phonetics courses teaching IPA consonants.
Character charts and linguistic resources requiring precise IPA representation.
When building HTML from phonetic data, using ʐ 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
\0290in CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support IPA Extensions (U+0250–U+02AF)
- Distinguish ʐ (IPA retroflex) from plain
zand orthographic ż (ż)
Don’t
- Substitute plain
zwhen ʐ is required for IPA accuracy - Confuse ʐ (IPA retroflex hook) with ȥ (z hook) or ż (Polish ż letter)
- Use the old incorrect CSS escape
\00290—the correct value is\0290 - Expect a named HTML entity—none exists for ʐ
- Put CSS escape
\0290in HTML text nodes
Key Takeaways
Type ʐ directly, or use hex/decimal references
ʐ ʐFor CSS stylesheets, use the escape in the content property
\0290Unicode U+0290 — LATIN SMALL LETTER Z WITH RETROFLEX HOOK
IPA voiced retroflex fricative [ʐ]; not the plain Latin letter z
Previous: Lowercase Z Hook (ȥ) Next: Lowercase Z Stroke (ƶ)
❓ Frequently Asked Questions
ʐ (hex), ʐ (decimal), or \0290 in CSS content. There is no named HTML entity. In UTF-8 you can also type ʐ directly.U+0290 (LATIN SMALL LETTER Z WITH RETROFLEX HOOK). IPA Extensions block. Hex 0290, decimal 656. Used in IPA for the voiced retroflex fricative [ʐ].z (U+007A) is the standard Latin letter used in everyday text. They are different characters with different Unicode values.ʐ or ʐ in HTML, or \0290 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
