HTML Entity for Lowercase H Hook (ɦ)

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

What You'll Learn

How to display the lowercase h with hook (ɦ) in HTML using hexadecimal, decimal, and CSS escape methods. This IPA symbol represents the voiced glottal fricative—a breathy-voiced or murmured sound used in phonetic transcription. It is U+0266 in the IPA Extensions block (U+0250–U+02AF).

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

⚡ Quick Reference — Lowercase H Hook Entity

Unicode U+0266

IPA Extensions

Hex Code ɦ

Hexadecimal reference

HTML Code ɦ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0266
Hex code       ɦ
HTML code      ɦ
Named entity   (none)
CSS code       \0266
Meaning        Latin small letter h with hook
Related        U+0267 = h heng hook (not the same)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase h hook (ɦ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The lowercase h hook (ɦ) and its numeric entity references are supported in modern browsers:

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

👀 Live Preview

See the lowercase h hook (ɦ) in IPA and phonetic contexts:

Large glyphɦ
IPA useVoiced glottal fricative (breathy-voiced)
BlockIPA Extensions (U+0250–U+02AF)
Not the same asɧ (h heng hook) or plain h
Numeric refs&#x0266; &#614; \0266

🧠 How It Works

1

Hexadecimal Code

&#x0266; uses the Unicode hexadecimal value 0266 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\0266 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+0266 sits in IPA Extensions. Do not confuse ɦ (h hook) with ɧ (h heng hook). There is no named HTML entity.

Use Cases

The lowercase h hook (ɦ) is commonly used in:

🔤 IPA transcription

Voiced glottal fricative in International Phonetic Alphabet notation.

🔬 Phonetics

Breathy-voiced glottal transition in linguistic papers and phonetics textbooks.

📄 Language documentation

Dialect studies contrasting voiced vs. voiceless glottal fricatives (e.g. Northern Wu).

📚 Language learning

Pronunciation guides, apps, and dictionaries with correct IPA symbols.

📄 Dictionaries

Dictionary entries and pronunciation keys using IPA symbols including ɦ.

♿ Accessibility

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

📄 Educational content

Demonstrating IPA Extensions characters in technical or educational material.

💡 Best Practices

Do

  • Use &#614; or &#x0266; 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 ɦ (h hook) from ɧ (h heng hook) in phonetic content
  • Pick one style (hex or decimal) per project for consistency

Don’t

  • Assume a named entity exists—there is none for ɦ
  • Confuse ɦ (h hook) with ɧ (h heng hook, U+0267)
  • Substitute plain h when IPA ɦ is required
  • Put CSS escape \0266 in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically

Key Takeaways

1

Three references render ɦ (no named entity)

&#x0266; &#614;
2

For CSS stylesheets, use the escape in the content property

\0266
3

Unicode U+0266 — LATIN SMALL LETTER H WITH HOOK

4

IPA Extensions; voiced glottal fricative in phonetic transcription

❓ Frequently Asked Questions

Use &#x0266; (hex), &#614; (decimal), or \0266 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+0266 (LATIN SMALL LETTER H WITH HOOK). IPA Extensions block. Hex 0266, decimal 614. Used in IPA for the voiced glottal fricative and in phonetics.
In IPA transcriptions, linguistic and phonetics content, language learning resources, pronunciation guides, and any text requiring this IPA Extensions character for the voiced glottal fricative or breathy-voiced sounds.
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 &#x0266;, &#614;, or \0266 instead.
ɦ (U+0266) is the h with hook, used in IPA for the voiced glottal fricative. ɧ (U+0267) is the h with heng hook, used for the Swedish sj sound. They are different IPA symbols with different phonetic uses.

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