HTML Entity for Uppercase L Script Capital (ℒ)

What You'll Learn
How to display the script capital L (ℒ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Letterlike Symbols block and is widely used in mathematical notation—notably for the Laplace transform—and script-style typography. Its official Unicode name is SCRIPT CAPITAL L (U+2112).
Render it with ℒ, ℒ, ℒ, or CSS escape \2112. The named entity ℒ is often the most readable option in HTML source. Do not confuse ℒ with plain L (U+004C) or ⅃ (reversed sans-serif L).
⚡ Quick Reference — Uppercase L Script Capital Entity
U+2112Letterlike Symbols
ℒHexadecimal reference
ℒDecimal reference
ℒMost readable option
Name Value
──────────── ──────────
Unicode U+2112
Hex code ℒ
HTML code ℒ
Named entity ℒ
CSS code \2112
Meaning Script capital L
Not the same U+004C = L (plain uppercase)
Related U+2130 = ℰ U+2131 = ℱ U+2110 = ℐ
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the script capital L (ℒ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2112";
}
</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 script capital L (ℒ) and the named entity ℒ are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the script capital L (ℒ) in mathematical and typographic contexts:
🧠 How It Works
Hexadecimal Code
ℒ uses the Unicode hexadecimal value 2112 to display the script capital L. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℒ uses the decimal Unicode value 8466 to display the same character. A common method for Letterlike Symbols.
Named Entity
ℒ is the standard named entity for ℒ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\2112 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ℒ. Unicode U+2112 sits in Letterlike Symbols. Do not confuse with plain L (U+004C) or ⅃ (reversed sans-serif L, U+2143).
Use Cases
The script capital L (ℒ) is commonly used in:
Laplace transform notation, script-style variables, and formal mathematical writing.
Elegant script lettering in calligraphy, invitations, and formal design projects.
Scholarly documents and research papers using script letter notation.
Engineering and physics content where ℒ denotes the Laplace transform operator.
Math and engineering courses teaching Laplace transforms and script letter conventions.
Scientific blogs and online textbooks that need proper script L rendering.
Typography work and character set demonstrations for Letterlike Symbols.
💡 Best Practices
Do
- Use
ℒin HTML when possible for readability - Serve pages as UTF-8; you can also type ℒ directly in UTF-8 source
- Use math-friendly fonts (e.g. Cambria Math, STIX) for reliable script glyph display
- Distinguish ℒ (script L) from plain
Land ⅃ (reversed sans-serif L) - Pick one entity style (named, hex, or decimal) per project for consistency
Don’t
- Substitute plain
Lwhen ℒ is required in math or script notation - Confuse ℒ (script L) with ⅃ (reversed sans-serif L)
- Put CSS escape
\2112in HTML text nodes - Use padded Unicode notation like U+02112—the correct value is
U+2112 - Use
\02112in CSS—the correct escape is\2112
Key Takeaways
Four references render ℒ; named entity is most readable
ℒ ℒ ℒFor CSS stylesheets, use the escape in the content property
\2112Unicode U+2112 — SCRIPT CAPITAL L
Widely used for Laplace transform notation in mathematics and engineering
Previous: Uppercase L Reverse Sans Serif Capital (⅃) Next: Uppercase L Stroke
❓ Frequently Asked Questions
ℒ (named), ℒ (hex), ℒ (decimal), or \2112 in CSS content. The named entity ℒ is the most readable for HTML content.U+2112 (SCRIPT CAPITAL L). Letterlike Symbols block. Hex 2112, decimal 8466. Used in mathematical notation and script-style typography.ℒ or ℒ) or the named entity ℒ is used in HTML content. The CSS entity (\2112) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℒ but in different contexts.ℒ. It is part of the standard HTML5 entity set and is well supported. Do not confuse with plain L (U+004C) or ⅃ (reversed sans-serif L, U+2143).Explore More HTML Entities!
Discover 1500+ HTML character references — script letters, math symbols, and more.
8 people found this page helpful
