HTML Entity for Lz Digraph (ʫ)

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

What You'll Learn

How to display the Lz Digraph (ʫ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+02AB (LATIN SMALL LETTER LZ DIGRAPH) in the IPA Extensions block (U+0250–U+02AF)—a single-code-point digraph used in the International Phonetic Alphabet and phonetic notation for lateral+fricative cluster symbols.

Render it with ʫ, ʫ, or CSS escape \02AB. There is no named HTML entity for this symbol. Compare ʪ (Ls digraph, U+02AA) or ʣ (Dz digraph) when you need a related IPA glyph.

⚡ Quick Reference — Lz Digraph

Unicode U+02AB

IPA Extensions block

Hex Code ʫ

Hexadecimal reference

HTML Code ʫ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+02AB
Hex code       ʫ
HTML code      ʫ
Named entity   (none)
CSS code       \02AB
Related        U+02AA = Ls digraph (ʪ); U+02A3 = Dz digraph (ʣ)
1

Complete HTML Example

This example demonstrates the Lz Digraph (ʫ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\02AB";
  }
 </style>
</head>
<body>
<p>Lz Digraph using Hexadecimal: &#x02AB;</p>
<p>Lz Digraph using HTML Code: &#683;</p>
<p id="point">Lz Digraph using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+02AB is supported in modern browsers when rendered with a font that includes IPA Extensions (e.g. system UI, Doulos SIL, Charis SIL):

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

👀 Live Preview

See the Lz Digraph (ʫ) in phonetic and linguistic contexts:

Large glyph ʫ
IPA digraph ʪ (ls)   ʫ (lz)
vs two letters ʫ digraph   lz letters
Related IPA ʣ dz   ɬ belted l
Numeric refs &#x02AB; &#683;

🧠 How It Works

1

Hexadecimal Code

&#x02AB; uses the Unicode hexadecimal value 02AB to display the Lz Digraph. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\02AB 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: ʫ. Unicode U+02AB. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Lz Digraph (ʫ) is commonly used in:

🔤 IPA transcription

Represent lateral+fricative cluster notation in International Phonetic Alphabet materials.

📄 Linguistic docs

Papers, dictionaries, and language descriptions for phonetic digraph symbols.

🎓 Academic research

Phonology, phonetics, and language acquisition papers and textbooks.

📚 Dictionaries

Pronunciation guides and lexical databases with IPA notation.

🏫 Language learning

Teach pronunciation and IPA digraphs in language learning apps and sites.

🔬 Speech therapy

Clinical or educational materials that include phonetic notation.

💡 Best Practices

Do

  • Use &#x02AB; or &#683; consistently in markup
  • Use fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL, system UI)
  • Add aria-label with phonetic meaning (e.g. “IPA lz digraph”)
  • Prefer the single digraph character over separate l + z when IPA requires ʫ
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+02AB
  • Confuse ʫ (lz digraph) with ʪ (ls digraph) or plain letters “lz”
  • Put CSS escape \02AB in HTML text nodes
  • Use padded Unicode notation like U+002AB—the correct value is U+02AB
  • Assume all fonts render IPA glyphs identically

Key Takeaways

1

Two HTML numeric references render ʫ

&#x02AB; &#683;
2

For CSS stylesheets, use the escape in the content property

\02AB
3

Unicode U+02AB — LATIN SMALL LETTER LZ DIGRAPH

4

IPA Extensions block (U+0250–U+02AF)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x02AB; (hex), &#683; (decimal), or \02AB in CSS content. There is no named entity. All produce ʫ.
U+02AB (LATIN SMALL LETTER LZ DIGRAPH). IPA Extensions block (U+0250–U+02AF). Hex 02AB, decimal 683. Used in IPA for lateral+fricative digraph notation.
In phonetic and IPA transcription, linguistic documentation, academic phonology papers, dictionaries, language learning content, and any text that requires the single-character lz digraph rather than separate l and z letters.
HTML references (&#683; or &#x02AB;) go in markup. The CSS escape \02AB is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many IPA Extensions characters including U+02AB have no named entity—use &#x02AB; or &#683; in HTML.

Explore More HTML Entities!

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