HTML Entity for Lezh (ɮ)

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

What You'll Learn

How to display the Lezh (ɮ) character in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+026E (LATIN SMALL LETTER LEZH) in the IPA Extensions block (U+0250–U+02AF).

Render it with ɮ, ɮ, or CSS \026E. There is no named HTML entity. Lezh is used in the International Phonetic Alphabet (IPA) for the voiced alveolar lateral fricative sound—essential for linguistics, phonetics, and phonetic transcription.

⚡ Quick Reference — Lezh

Unicode U+026E

IPA Extensions

Hex Code ɮ

Hexadecimal reference

HTML Code ɮ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+026E
Hex code       ɮ
HTML code      ɮ
Named entity   (none)
CSS code       \026E
Meaning        Latin small letter lezh (IPA)
IPA sound      Voiced alveolar lateral fricative
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing Lezh (ɮ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\026E";
  }
 </style>
</head>
<body>
<p>Lezh (hex): &#x026E;</p>
<p>Lezh (decimal): &#622;</p>
<p id="point">Lezh (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Lezh (ɮ) renders in modern browsers when the font includes IPA Extensions glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See Lezh (ɮ) rendered live in phonetic contexts:

Large glyph ɮ
IPA example [ɮa]   /ɮ/
Transcription Voiced alveolar lateral fricative: ɮ
Numeric refs &#x026E; &#622; \026E
Block IPA Extensions (U+0250–U+02AF)

🧠 How It Works

1

Hexadecimal Code

&#x026E; uses the Unicode hexadecimal value 026E for Latin small letter lezh. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#622; uses the decimal Unicode value 622 to display the same character.

HTML markup
3

CSS Entity

\026E is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All three methods produce ɮ. Unicode U+026E is in IPA Extensions. There is no named HTML entity. Previous: Lesser Than.

Use Cases

Lezh (ɮ) is commonly used in:

📚 Linguistics

Transcribe the voiced alveolar lateral fricative in linguistic papers and phonetic descriptions.

🔤 IPA transcription

International Phonetic Alphabet notation for pronunciation and dialect documentation.

📄 Language learning

Pronunciation guides, dictionaries, and language-learning content.

🎓 Academic papers

Phonology, dialectology, and descriptive linguistics research.

🌐 Web-based linguistics

Online dictionaries, IPA charts, and phonetics course materials.

📚 Symbol references

HTML entity lists and Unicode IPA character documentation.

💡 Best Practices

Do

  • Use &#x026E; or &#622; for numeric references
  • Use IPA-capable fonts (Charis SIL, Doulos SIL, Noto Sans) for reliable rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Provide audio or description alongside IPA symbols for accessibility
  • Keep one entity style per project for consistency

Don’t

  • Assume a named HTML entity exists for U+026E—there is none
  • Use CSS \026E inside HTML text nodes
  • Rely on system fonts that may lack IPA Extensions glyphs
  • Confuse lezh ɮ with unrelated Latin letters
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references plus CSS all render ɮ

&#x026E; &#622;
2

For CSS, use \026E in the content property

3

Unicode U+026E — LATIN SMALL LETTER LEZH (IPA)

4

Voiced alveolar lateral fricative in phonetic notation

❓ Frequently Asked Questions

Use &#x026E; (hex), &#622; (decimal), or \026E in CSS content. All three methods render ɮ correctly. There is no named HTML entity.
U+026E (LATIN SMALL LETTER LEZH). IPA Extensions block (U+0250–U+02AF). Hex 026E, decimal 622. Used in IPA for the voiced alveolar lateral fricative.
In linguistics and phonetics, IPA transcription, language learning and pronunciation guides, academic papers on phonology, and any content requiring the voiced alveolar lateral fricative symbol in formal notation.
HTML references (&#622; or &#x026E;) go in markup. The CSS escape \026E is used in stylesheets, typically on ::before or ::after. Both produce ɮ.
Named HTML entities are reserved for common characters. IPA Extensions characters like U+026E use &#622;, &#x026E;, or \026E in CSS—standard for phonetic symbols in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, scripts, 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