HTML Entity for Uppercase L Turned Sans Serif Capital (⅂)

What You'll Learn
How to display the turned sans-serif capital L (⅂) in HTML using hexadecimal, decimal, and CSS escape methods. This is a sans-serif L rotated 180 degrees, used in typography and mathematical notation. The official Unicode name is TURNED SANS-SERIF CAPITAL L (U+2142) in the Letterlike Symbols block.
Render it with ⅂, ⅂, or CSS escape \2142. There is no named HTML entity. Do not substitute plain L (U+004C) or the reversed variant ⅃ (U+2143)—they are different characters.
⚡ Quick Reference — Turned Sans-Serif Capital L Entity
U+2142Letterlike Symbols
⅂Hexadecimal reference
⅂Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2142
Hex code ⅂
HTML code ⅂
Named entity (none)
CSS code \2142
Meaning Turned sans-serif capital L
Not the same U+004C = L (plain uppercase)
U+2143 = ⅃ (reversed sans-serif L)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the turned sans-serif capital L (⅂) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2142";
}
</style>
</head>
<body>
<p>Symbol (hex): ⅂</p>
<p>Symbol (decimal): ⅂</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The turned sans-serif capital L (⅂) renders in modern browsers when the font supports Letterlike Symbols:
👀 Live Preview
See the turned sans-serif capital L (⅂) in typographic contexts:
🧠 How It Works
Hexadecimal Code
⅂ uses the Unicode hexadecimal value 2142 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
⅂ uses the decimal Unicode value 8514 to display the same character. A common method for Letterlike Symbols.
CSS Entity
\2142 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+2142 sits in Letterlike Symbols. Do not confuse with plain L (U+004C), ⅃ (reversed L), or other L variants. Use the correct code point for semantic accuracy.
Use Cases
The turned sans-serif capital L (⅂) is commonly used in:
Creative typography, font design, and layouts requiring a turned L letterlike symbol.
Equations, formulas, and academic papers using letterlike symbols from Unicode.
Logos, branding, and decorative text with distinctive rotated letter forms.
Content requiring unique character representation beyond basic Latin letters.
Tutorials and documentation explaining Letterlike Symbols and typographic variants.
Using U+2142 ensures the turned L is one character, not a CSS-rotated plain L.
Pseudo-elements and generated content using \2142 in stylesheets.
💡 Best Practices
Do
- Use U+2142 (⅂) when the turned L symbol is required; use U+004C for plain L
- Serve pages as UTF-8; you can also type ⅂ directly in UTF-8 source
- Use fonts that support Letterlike Symbols (e.g. Cambria Math, Segoe UI Symbol)
- Pick one numeric style (hex or decimal) per project for consistency
- Distinguish ⅂ (turned) from ⅃ (reversed) when both appear in content
Don’t
- Substitute plain
Lor CSS transforms when ⅂ is the intended symbol - Expect a named HTML entity—none exists for this character
- Use padded Unicode notation like U+02142—the correct value is
U+2142 - Use
\02142in CSS—the correct escape is\2142 - Confuse ⅂ (turned) with ⅃ (reversed sans-serif L)
Key Takeaways
Three references render ⅂; no named entity exists
⅂ ⅂For CSS stylesheets, use the escape in the content property
\2142Unicode U+2142 — TURNED SANS-SERIF CAPITAL L
Letterlike Symbols block; not interchangeable with plain L (U+004C) or reversed ⅃
Previous: Uppercase L Stroke (Ł) Next: Uppercase LJ
❓ Frequently Asked Questions
⅂ (hex), ⅂ (decimal), or \2142 in CSS content. There is no named HTML entity for ⅂. In UTF-8 you can also type the character directly.U+2142 (TURNED SANS-SERIF CAPITAL L). Letterlike Symbols block. Hex 2142, decimal 8514. A sans-serif L rotated 180 degrees, used in typography and mathematical notation.⅂ or ⅂, or the CSS entity \2142. 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
