HTML Entity for Lowercase H Reverse Fishhook Tailed (ʯ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+02AF

What You'll Learn

How to display the turned h with fishhook and tail (ʯ), also called lowercase h reverse fishhook tailed, in HTML using hexadecimal, decimal, and CSS escape methods. Officially LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL, this IPA Extensions character is the tailed variant of ʮ (turned h with fishhook). It is used in IPA and Sinology for phonetic transcription and is U+02AF—the last character in the IPA Extensions block (U+0250–U+02AF).

Render it with ʯ, ʯ, or CSS escape \02AF. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase H Reverse Fishhook Tailed Entity

Unicode U+02AF

IPA Extensions (last in block)

Hex Code ʯ

Hexadecimal reference

HTML Code ʯ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+02AF
Hex code       ʯ
HTML code      ʯ
Named entity   (none)
CSS code       \02AF
Meaning        Latin small letter turned h with fishhook and tail
Also known as  Lowercase h reverse fishhook tailed
Related        U+02AE = turned h with fishhook (no tail)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the turned h with fishhook and tail (ʯ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\02AF";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x02AF;</p>
<p>Symbol (decimal): &#687;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The turned h with fishhook and tail (ʯ) and its numeric entity references are supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the turned h with fishhook and tail (ʯ) in phonetic contexts:

Large glyphʯ
Unicode nameLatin small letter turned h with fishhook and tail
Block noteLast character in IPA Extensions (U+0250–U+02AF)
Tailed variant ofʮ (turned h with fishhook)
Not the same asɥ, ɦ, or ɧ
Numeric refs&#x02AF; &#687; \02AF

🧠 How It Works

1

Hexadecimal Code

&#x02AF; uses the Unicode hexadecimal value 02AF to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#687; uses the decimal Unicode value 687 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

\02AF is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ʯ. Unicode U+02AF is the tailed variant of U+02AE and closes the IPA Extensions block. There is no named HTML entity.

Use Cases

The turned h with fishhook and tail (ʯ) is commonly used in:

🔤 IPA transcription

Specialized IPA notation where the tailed form is required by the transcription system.

🇨🇳 Sinology

Chinese language transcription and Sinological phonetic notation using the tailed symbol.

🔬 Linguistics

Phonetics textbooks and papers that distinguish the tailed form from ʮ.

📚 Language documentation

Dialect studies and language documentation with extended IPA or Sinological transcription.

📄 Dictionaries

Dictionary entries and pronunciation keys that use this or related IPA symbols.

♿ Accessibility

Proper encoding helps screen readers handle IPA symbols in phonetic text.

📄 Unicode reference

Documenting the final character (U+02AF) of the IPA Extensions block in educational content.

💡 Best Practices

Do

  • Use &#687; or &#x02AF; 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 ʯ (tailed) from ʮ (fishhook only) and from ɥ, ɦ, ɧ
  • Pick one style (hex or decimal) per project for consistency

Don’t

  • Assume a named entity exists—there is none for ʯ
  • Confuse ʯ (tailed) with ʮ (fishhook without tail)
  • Substitute ʮ or plain h when ʯ is required
  • Put CSS escape \02AF in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically

Key Takeaways

1

Three references render ʯ (no named entity)

&#x02AF; &#687;
2

For CSS stylesheets, use the escape in the content property

\02AF
3

Unicode U+02AF — last character in IPA Extensions block

4

Tailed variant of ʮ; used in IPA and Sinology

❓ Frequently Asked Questions

Use &#x02AF; (hex), &#687; (decimal), or \02AF in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+02AF (LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL). IPA Extensions block. Hex 02AF, decimal 687. It is the last code point in the IPA Extensions block (U+0250–U+02AF).
In IPA transcriptions, Sinology and Chinese language transcription, linguistic and phonetics content, and any text requiring this tailed IPA Extensions character for specialized phonetic notation.
ʯ (U+02AF) is the turned h with fishhook and tail. ʮ (U+02AE) is the turned h with fishhook without the tail. Both are used in IPA and Sinology; use the one required by your notation system.
Named HTML entities are typically reserved for ASCII, Latin-1, and common characters. ʯ is in the IPA Extensions block and has no predefined named entity. Use &#x02AF;, &#687;, or \02AF instead.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

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