HTML Entity for Lowercase L Curl (ȴ)

What You'll Learn
How to display the lowercase l with curl (ȴ) in HTML using hexadecimal, decimal, and CSS escape methods. The curl is a hook-shaped diacritic on the letter l, used in phonetic notation and some orthographies to represent a palatalized or similar lateral sound. This character is U+0234 in the Latin Extended-B block.
Render it with ȴ, ȴ, or CSS escape \234. 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 Curl Entity
U+0234Latin Extended-B
ȴHexadecimal reference
ȴDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0234
Hex code ȴ
HTML code ȴ
Named entity (none)
CSS code \234
Meaning Latin small letter l with curl
Related U+006C = l (plain lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase l curl (ȴ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\234";
}
</style>
</head>
<body>
<p>Symbol (hex): ȴ</p>
<p>Symbol (decimal): ȴ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase l curl (ȴ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase l curl (ȴ) in phonetic and linguistic contexts:
l (U+006C), ɬ (l belt), or ɭ (l retroflex hook)🧠 How It Works
Hexadecimal Code
ȴ uses the Unicode hexadecimal value 0234 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȴ uses the decimal Unicode value 564 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\234 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+0234 sits in Latin Extended-B. Do not confuse with plain l (U+006C), ɬ (l with belt), or ɭ (l retroflex hook). Use the precomposed character for correct semantics in phonetic text.
Use Cases
The lowercase l curl (ȴ) is commonly used in:
Extended phonetic notation where l-with-curl represents a palatalized lateral or similar sound.
Academic papers, language documentation, and phonological descriptions using Latin Extended-B.
Pronunciation guides and reference works that include phonetic symbols such as ȴ.
Writing systems that use the l-with-curl as a distinct letter or symbol.
Fonts and typographic systems supporting Latin Extended-B for phonetic use.
Using U+0234 ensures screen readers interpret ȴ as one character, not l plus a mark.
When generating phonetic markup, using ȴ or ȴ ensures correct output.
💡 Best Practices
Do
- Use U+0234 (ȴ) for l with curl; use U+006C for plain l when semantics matter
- Serve pages as UTF-8; you can also type ȴ directly in UTF-8 source
- Use fonts that support Latin Extended-B for phonetic and linguistic text
- Prefer the precomposed character U+0234 over combining forms
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
lwhen ȴ is required for correct phonetic notation - Confuse ȴ (l with curl) with ɭ (l retroflex hook) or ɬ (l belt)
- Expect a named HTML entity—none exists for this character
- Put CSS escape
\234in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
Key Takeaways
Three references render ȴ; no named entity exists
ȴ ȴFor CSS stylesheets, use the escape in the content property
\234Unicode U+0234 — LATIN SMALL LETTER L WITH CURL
Used in phonetic notation and some orthographies on the web
Previous: Lowercase L Cedilla (ļ) Next: Lowercase L Middle Dot
❓ Frequently Asked Questions
ȴ (hex), ȴ (decimal), or \234 in CSS content. There is no named HTML entity for ȴ. In UTF-8 you can also type the character directly.U+0234 (LATIN SMALL LETTER L WITH CURL). Latin Extended-B block. Hex 0234, decimal 564. Used in phonetic notation and some orthographies.ȴ or ȴ, or the CSS entity \234. In UTF-8 pages you can type ȴ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
