HTML Entity for Lowercase L Retroflex Hook (ɭ)

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

What You'll Learn

How to display the lowercase l with retroflex hook (ɭ) in HTML using hexadecimal, decimal, and CSS escape methods. This is the IPA symbol for the retroflex lateral approximant—a sound produced with the tongue tip curled back, found in Tamil, Malayalam, Norwegian, and other languages. The character is U+026D in the IPA Extensions block.

Render it with ɭ, ɭ, or CSS escape \26D. There is no named HTML entity for this character, so numeric codes or CSS must be used. In UTF-8 documents you can also type ɭ directly.

⚡ Quick Reference — Lowercase L Retroflex Hook Entity

Unicode U+026D

IPA Extensions

Hex Code ɭ

Hexadecimal reference

HTML Code ɭ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+026D
Hex code       ɭ
HTML code      ɭ
Named entity   (none)
CSS code       \26D
Meaning        Latin small letter l with retroflex hook
IPA            Retroflex lateral approximant
Related        U+006C = l (plain lowercase)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\26D";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x026D;</p>
<p>Symbol (decimal): &#621;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase l retroflex hook (ɭ) is supported in modern browsers when the font includes IPA Extensions glyphs:

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

👀 Live Preview

See the lowercase l retroflex hook (ɭ) in IPA and language contexts:

Large glyphɭ
IPARetroflex lateral approximant
LanguagesTamil, Malayalam, Norwegian, and other retroflex-lateral languages
Not the same asplain l (U+006C), ɫ (l middle tilde), or ɬ (l belt)
Numeric refs&#x026D; &#621; \26D

🧠 How It Works

1

Hexadecimal Code

&#x026D; uses the Unicode hexadecimal value 026D to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\26D 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+026D sits in IPA Extensions. Do not confuse with plain l (U+006C), ɫ (l middle tilde), or ɬ (l belt). Use IPA-capable fonts for reliable rendering.

Use Cases

The lowercase l retroflex hook (ɭ) is commonly used in:

🎤 IPA transcription

Standard IPA symbol for the retroflex lateral approximant in phonetic transcriptions.

🇮🇳 South Asian languages

Tamil, Malayalam, and related languages that use retroflex lateral sounds.

🇳🇴 Norwegian

Phonetic notation for retroflex lateral sounds in Norwegian dialects.

📖 Dictionaries

Pronunciation keys and language-learning materials using IPA notation.

🔤 Linguistics

Academic papers, phonology textbooks, and language documentation using IPA symbols.

♿ Accessibility

Using U+026D ensures screen readers interpret ɭ as one IPA character.

⚙ Programmatic HTML

When generating phonetic markup, using &#621; or &#x026D; ensures correct output.

💡 Best Practices

Do

  • Use U+026D (ɭ) for the IPA retroflex-l symbol; use U+006C for plain l when semantics matter
  • 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
  • Prefer the precomposed character U+026D over combining forms
  • Pick one entity style (hex or decimal) per project for consistency

Don’t

  • Substitute plain l when ɭ is required for correct IPA notation
  • Confuse ɭ (l retroflex hook) with ɫ (l middle tilde) or ɬ (l belt)
  • Expect a named HTML entity—none exists for this character
  • Put CSS escape \26D in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically

Key Takeaways

1

Three references render ɭ; no named entity exists

&#x026D; &#621;
2

For CSS stylesheets, use the escape in the content property

\26D
3

Unicode U+026D — LATIN SMALL LETTER L WITH RETROFLEX HOOK

4

IPA symbol for retroflex lateral approximant in Tamil, Malayalam, Norwegian, and more

❓ Frequently Asked Questions

Use &#x026D; (hex), &#621; (decimal), or \26D in CSS content. There is no named HTML entity for ɭ. In UTF-8 you can also type the character directly.
U+026D (LATIN SMALL LETTER L WITH RETROFLEX HOOK). IPA Extensions block. Hex 026D, decimal 621. It is the IPA symbol for the retroflex lateral approximant.
When writing IPA transcriptions, linguistic content, dictionary pronunciation guides, and language documentation for Tamil, Malayalam, Norwegian, and other languages with retroflex lateral sounds.
No. Use numeric codes &#x026D; or &#621;, or the CSS entity \26D. In UTF-8 pages you can type ɭ directly.
ɭ represents the retroflex lateral approximant—a sound made with the tongue tip curled back, with airflow along the sides of the tongue. It occurs in Tamil, Malayalam, Norwegian, and other languages.

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