HTML Entity for Lowercase H Heng Hook (ɧ)

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

What You'll Learn

How to display the lowercase h with heng hook (ɧ) in HTML using hexadecimal, decimal, and CSS escape methods. This IPA symbol represents one variety of the Swedish “sj” sound (as in sju). It is U+0267 in the IPA Extensions block (U+0250–U+02AF).

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

⚡ Quick Reference — Lowercase H Heng Hook Entity

Unicode U+0267

IPA Extensions

Hex Code ɧ

Hexadecimal reference

HTML Code ɧ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

The lowercase h heng 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 heng hook (ɧ) in IPA and phonetic contexts:

Large glyphɧ
IPA useSwedish “sj” sound (e.g. sju, sjuk)
BlockIPA Extensions (U+0250–U+02AF)
Not the same asɦ (h hook) or plain h
Numeric refs&#x0267; &#615; \0267

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The lowercase h heng hook (ɧ) is commonly used in:

🔤 IPA transcription

Swedish “sj” sound in International Phonetic Alphabet notation (e.g. sju, sjuk).

🇫🇸 Swedish guides

Pronunciation guides, language learning materials, and dictionaries for Swedish.

🔬 Phonetics

Linguistic papers, phonetics textbooks, and phonetic notation systems.

📚 Language learning

Apps and sites teaching Swedish or general phonetics 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 &#615; or &#x0267; 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 ɧ (heng hook) from ɦ (h 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 heng hook) with ɦ (h hook, U+0266)
  • Substitute plain h or sh when IPA ɧ is required
  • Put CSS escape \0267 in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically

Key Takeaways

1

Three references render ɧ (no named entity)

&#x0267; &#615;
2

For CSS stylesheets, use the escape in the content property

\0267
3

Unicode U+0267 — LATIN SMALL LETTER H WITH HENG HOOK

4

IPA Extensions; Swedish sj sound in phonetic transcription

❓ Frequently Asked Questions

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