HTML Entity for Lowercase H Reverse (ɥ)

What You'll Learn
How to display the turned h (ɥ), also called lowercase h reverse, in HTML using hexadecimal, decimal, and CSS escape methods. Officially LATIN SMALL LETTER TURNED H, this IPA symbol represents the voiced labial-palatal approximant—a sound in French (e.g. huile) and Chinese. It is U+0265 in the IPA Extensions block.
Render it with ɥ, ɥ, or CSS escape \0265. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase H Reverse Entity
U+0265IPA Extensions
ɥHexadecimal reference
ɥDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0265
Hex code ɥ
HTML code ɥ
Named entity (none)
CSS code \0265
Meaning Latin small letter turned h
Also known as Lowercase h reverse
Related U+A78D = turned H (uppercase)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the turned h (ɥ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0265";
}
</style>
</head>
<body>
<p>Symbol (hex): ɥ</p>
<p>Symbol (decimal): ɥ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The turned h (ɥ) and its numeric entity references are supported in modern browsers:
👀 Live Preview
See the turned h (ɥ) in IPA and phonetic contexts:
🧠 How It Works
Hexadecimal Code
ɥ uses the Unicode hexadecimal value 0265 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɥ uses the decimal Unicode value 613 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\0265 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+0265 is LATIN SMALL LETTER TURNED H in IPA Extensions. Uppercase form is Ɥ (U+A78D). There is no named HTML entity.
Use Cases
The turned h (ɥ) is commonly used in:
Voiced labial-palatal approximant in International Phonetic Alphabet notation.
Pronunciation guides for French words like huile and nuit where ɥ represents the semivowel.
Phonetic notation for Mandarin and other Chinese varieties using this sound.
Phonetics textbooks, linguistic papers, and academic phonetic notation.
Apps and sites teaching French, Chinese, or general phonetics with correct 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 ɥ (turned h) from plain
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) with ɦ (h hook) or ɧ (h heng hook)
- Substitute plain
hwhen IPA ɥ is required - Put CSS escape
\0265in 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
\0265Unicode U+0265 — LATIN SMALL LETTER TURNED H
IPA voiced labial-palatal approximant (French, Chinese)
Previous: Lowercase H Latin (ͪ) Next: Lowercase H Reverse Fishhook
❓ Frequently Asked Questions
ɥ (hex), ɥ (decimal), or \0265 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0265 (LATIN SMALL LETTER TURNED H). IPA Extensions block. Hex 0265, decimal 613. Used in IPA for the voiced labial-palatal approximant.ɥ, ɥ, or \0265 instead.U+0265) is the turned h IPA symbol for the voiced labial-palatal approximant (e.g. in French huile). The regular Latin small letter h (U+0068) is a spacing letter used in normal text. They are different characters with different phonetic and typographic uses.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
