HTML Entity for Lowercase H Reverse Fishhook (ʮ)

What You'll Learn
How to display the turned h with fishhook (ʮ), also called lowercase h reverse fishhook, in HTML using hexadecimal, decimal, and CSS escape methods. Officially LATIN SMALL LETTER TURNED H WITH FISHHOOK, this IPA Extensions character is used in the International Phonetic Alphabet and in Sinology for phonetic transcription. It is U+02AE in the IPA Extensions block (added in Unicode 4.0).
Render it with ʮ, ʮ, or CSS escape \02AE. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase H Reverse Fishhook Entity
U+02AEIPA Extensions
ʮHexadecimal reference
ʮDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+02AE
Hex code ʮ
HTML code ʮ
Named entity (none)
CSS code \02AE
Meaning Latin small letter turned h with fishhook
Also known as Lowercase h reverse fishhook
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the turned h with fishhook (ʮ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\02AE";
}
</style>
</head>
<body>
<p>Symbol (hex): ʮ</p>
<p>Symbol (decimal): ʮ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The turned h with fishhook (ʮ) and its numeric entity references are supported in modern browsers:
👀 Live Preview
See the turned h with fishhook (ʮ) in phonetic contexts:
🧠 How It Works
Hexadecimal Code
ʮ uses the Unicode hexadecimal value 02AE to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʮ uses the decimal Unicode value 686 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\02AE 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+02AE is LATIN SMALL LETTER TURNED H WITH FISHHOOK in IPA Extensions. There is no named HTML entity.
Use Cases
The turned h with fishhook (ʮ) is commonly used in:
Specialized IPA notation where this symbol represents specific phonetic values in certain traditions.
Chinese language transcription and Sinological phonetic notation.
Phonetics textbooks, linguistic papers, and extended phonetic notation.
Dialect studies and language documentation using extended IPA or Sinological transcription.
Dictionary entries and pronunciation keys that use this or related IPA symbols.
Proper encoding helps screen readers handle IPA symbols in phonetic text.
Demonstrating IPA Extensions characters in technical or educational material.
💡 Best Practices
Do
- Use
ʮorʮin HTML (no named entity exists) - Serve pages as UTF-8; you can also type ʮ directly in UTF-8 source
- Use IPA-capable fonts (e.g. Doulos SIL, Charis SIL) for reliable rendering
- Distinguish ʮ from ɥ (turned h), ɦ, and ɧ
- Pick one style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for ʮ
- Confuse ʮ (turned h fishhook) with ɥ (plain turned h)
- Substitute ɦ or plain
hwhen ʮ is required - Put CSS escape
\02AEin HTML text nodes - Assume all fonts render IPA Extensions glyphs identically
Key Takeaways
Three references render ʮ (no named entity)
ʮ ʮFor CSS stylesheets, use the escape in the content property
\02AEUnicode U+02AE — LATIN SMALL LETTER TURNED H WITH FISHHOOK
IPA and Sinology phonetic transcription
Previous: Lowercase H Reverse (ɥ) Next: Lowercase H Reverse Fishhook Tailed
❓ Frequently Asked Questions
ʮ (hex), ʮ (decimal), or \02AE in CSS content. There is no named HTML entity; use numeric codes or CSS.U+02AE (LATIN SMALL LETTER TURNED H WITH FISHHOOK). IPA Extensions block. Hex 02AE, decimal 686. Used in IPA and Sinology for phonetic transcription.ʮ, ʮ, or \02AE instead.U+02AE) is the turned h with fishhook used in IPA and Sinology. ɥ (U+0265) is the plain turned h for the voiced labial-palatal approximant. They are different IPA Extensions characters with different phonetic uses.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
