HTML Entity for Lowercase L Middle Dot (ŀ)

What You'll Learn
How to display the lowercase l with middle dot (ŀ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The middle dot (·) appears on the letter l and is used in Catalan orthography, notably in the digraph ŀl as in col·lecció (collection). This character is U+0140 in the Latin Extended-A block.
Render it with ŀ, ŀ, ŀ, or CSS escape \140. The named entity ŀ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase L Middle Dot Entity
U+0140Latin Extended-A
ŀHexadecimal reference
ŀDecimal reference
ŀMost readable option
Name Value
──────────── ──────────
Unicode U+0140
Hex code ŀ
HTML code ŀ
Named entity ŀ
CSS code \140
Meaning Latin small letter l with middle dot
Related U+013F = Ŀ (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase l middle dot (ŀ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\140";
}
</style>
</head>
<body>
<p>Symbol (hex): ŀ</p>
<p>Symbol (decimal): ŀ</p>
<p>Symbol (named): ŀ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase l middle dot (ŀ) and the named entity ŀ are supported in modern browsers when the font includes Latin Extended-A glyphs:
👀 Live Preview
See the lowercase l middle dot (ŀ) in Catalan and linguistic contexts:
l (U+006C) or · alone (U+00B7 middle dot)🧠 How It Works
Named Entity
ŀ is the HTML5 named entity for the lowercase l with middle dot—readable in source HTML.
Hexadecimal Code
ŀ uses the Unicode hexadecimal value 0140 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ŀ uses the decimal Unicode value 320 to display the same character. Works in all HTML contexts.
CSS Entity
\140 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: ŀ. Unicode U+0140 sits in Latin Extended-A. Prefer the precomposed character over l + combining dot. Do not confuse with plain l (U+006C) or the standalone middle dot · (U+00B7).
Use Cases
The lowercase l middle dot (ŀ) is commonly used in:
Correct spelling in the digraph ŀl (e.g. col·lecció, intel·ligent).
Academic texts and language descriptions using Latin Extended-A characters.
Catalan dictionary entries and language reference materials that include ŀ.
Localized websites and apps supporting Catalan and Latin Extended-A.
Language-learning materials and teaching resources for Catalan.
Using U+0140 ensures screen readers interpret ŀ as one character, not l plus a mark.
When generating Catalan markup, using ŀ or ŀ ensures correct output.
💡 Best Practices
Do
- Use U+0140 (ŀ) for l with middle dot; use U+006C for plain l when semantics matter
- Prefer
ŀwhen using entities—it is more readable than numeric codes - Serve pages as UTF-8; you can also type ŀ directly in UTF-8 source
- Use fonts that support Latin Extended-A for Catalan text
- Prefer the precomposed character over l + combining middle dot for Catalan digraphs
Don’t
- Substitute plain
lwhen ŀ is required for correct Catalan spelling - Confuse ŀ (l with middle dot) with the standalone · (U+00B7) punctuation mark
- Put CSS escape
\140in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Mix entity styles inconsistently within the same project
Key Takeaways
Four ways to render ŀ; includes named entity ŀ
ŀ ŀ ŀFor CSS stylesheets, use the escape in the content property
\140Unicode U+0140 — LATIN SMALL LETTER L WITH MIDDLE DOT
Essential for Catalan digraph ŀl and related content on the web
Previous: Lowercase L Curl (ȴ) Next: Lowercase L Middle Tilde
❓ Frequently Asked Questions
ŀ (named), ŀ (hex), ŀ (decimal), or \140 in CSS content. The named entity is the most readable. In UTF-8 you can also type the character directly.U+0140 (LATIN SMALL LETTER L WITH MIDDLE DOT). Latin Extended-A block. Hex 0140, decimal 320. Used in Catalan and other languages.ŀ. It is part of the HTML5 standard and supported in modern browsers. You can also use numeric references or type ŀ directly in UTF-8.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
