HTML Entity for Uppercase L Middle Dot (Ŀ)

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

What You'll Learn

How to display the uppercase 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 the uppercase counterpart of ŀ (ŀ), used in Catalan orthography and Latin Extended-A text. This character is U+013F in the Latin Extended-A block.

Render it with Ŀ, Ŀ, Ŀ, or CSS escape \13F. The named entity Ŀ is often the most readable option in HTML source. Do not confuse Ŀ with Ƚ (L with bar, no named entity).

⚡ Quick Reference — Uppercase L Middle Dot Entity

Unicode U+013F

Latin Extended-A

Hex Code Ŀ

Hexadecimal reference

HTML Code Ŀ

Decimal reference

Named Entity Ŀ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+013F
Hex code       Ŀ
HTML code      Ŀ
Named entity   Ŀ
CSS code       \13F
Meaning        Latin capital letter L with middle dot
Related        U+0140 = ŀ (lowercase)
Not the same   U+023D = Ƚ (L with bar)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase l middle dot (Ŀ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\13F";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x013F;</p>
<p>Symbol (decimal): &#319;</p>
<p>Symbol (named): &Lmidot;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase l middle dot (Ŀ) and the named entity &Lmidot; are supported in modern browsers when the font includes Latin Extended-A glyphs:

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

👀 Live Preview

See the uppercase l middle dot (Ŀ) in Catalan and linguistic contexts:

Large glyphĿ
CatalanUppercase counterpart of ŀ in the ŀl digraph (e.g. col·lecció)
Named entity&Lmidot; renders as Ŀ
Not the same asplain L (U+004C)  |  Ƚ (L with bar)  |  · alone (U+00B7)
Numeric refs&#x013F; &#319; &Lmidot; \13F

🧠 How It Works

1

Named Entity

&Lmidot; is the HTML5 named entity for the uppercase l with middle dot—readable in source HTML.

HTML markup
2

Hexadecimal Code

&#x013F; uses the Unicode hexadecimal value 013F to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#319; uses the decimal Unicode value 319 to display the same character. Works in all HTML contexts.

HTML markup
4

CSS Entity

\13F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: Ŀ. Unicode U+013F sits in Latin Extended-A. Prefer the precomposed character over L + combining dot. Do not confuse with plain L (U+004C), Ƚ (L with bar), or the standalone middle dot · (U+00B7).

Use Cases

The uppercase l middle dot (Ŀ) is commonly used in:

🇩🇪 Catalan language

Uppercase Catalan text where the middle-dot L is required, paired with ŀ in the ŀl digraph.

🔤 Linguistics

Academic texts and language descriptions using Latin Extended-A characters.

📖 Dictionaries

Catalan dictionary entries and language reference materials that include Ŀ.

🌐 Internationalization

Localized websites and apps supporting Catalan and Latin Extended-A.

📚 Education

Language-learning materials and teaching resources for Catalan.

♿ Accessibility

Using U+013F ensures screen readers interpret Ŀ as one character, not L plus a mark.

⚙ Programmatic HTML

When generating Catalan markup, using &Lmidot; or &#319; ensures correct output.

💡 Best Practices

Do

  • Use U+013F (Ŀ) for L with middle dot; use U+004C for plain L when semantics matter
  • Prefer &Lmidot; 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
  • Distinguish Ŀ (middle dot) from Ƚ (horizontal bar)

Don’t

  • Substitute plain L when Ŀ is required for correct Catalan spelling
  • Confuse Ŀ (L with middle dot) with Ƚ (L with bar) or the standalone · (U+00B7)
  • Put CSS escape \13F in HTML text nodes
  • Use padded Unicode notation like U+00013F—the correct value is U+013F
  • Use \00013F in CSS—the correct escape is \13F

Key Takeaways

1

Four ways to render Ŀ; includes named entity &Lmidot;

&#x013F; &#319; &Lmidot;
2

For CSS stylesheets, use the escape in the content property

\13F
3

Unicode U+013F — LATIN CAPITAL LETTER L WITH MIDDLE DOT

4

Uppercase pair of ŀ (&lmidot;); essential for Catalan on the web

❓ Frequently Asked Questions

Use &Lmidot; (named), &#x013F; (hex), &#319; (decimal), or \13F in CSS content. The named entity is the most readable. In UTF-8 you can also type the character directly.
U+013F (LATIN CAPITAL LETTER L WITH MIDDLE DOT). Latin Extended-A block. Hex 013F, decimal 319. Used in Catalan as the uppercase counterpart of ŀ.
Yes. The named HTML entity is &Lmidot;. It is part of the HTML5 standard and supported in modern browsers. You can also use numeric references or type Ŀ directly in UTF-8.
When writing Catalan text in uppercase, multilingual content, language-learning materials, dictionaries, and any content requiring the correct middle-dot L for meaning and accessibility.
Ŀ (U+013F) is L with a middle dot and has the named entity &Lmidot;, used in Catalan. Ƚ (U+023D) is L with a horizontal bar in Latin Extended-B with no named entity. They are different Unicode characters with different appearances and uses.

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