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

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2142

What Is Uppercase L Turned Sans Serif Capital?

Turned sans-serif capital L (⅂) is the Unicode character at U+2142 in Letterlike Symbols. Official name: TURNED SANS-SERIF CAPITAL L — a rotated stylized L used as a special typographic symbol, not as plain letter L.

Remember
Character     ⅂
Unicode       U+2142
Hex entity    ⅂
Decimal       ⅂
CSS escape    \2142
Named entity  (none)
Not the same  L · ⅃ · ℒ

Prefer ⅂ or ⅂ in HTML markup. You can also type ⅂ in UTF-8. There is no named entity. For normal words, type plain L instead.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⅂HTML text (UTF-8)
Hex entity⅂HTML markup (preferred)
Decimal entity⅂HTML markup
CSS escape\2142Stylesheet content
Named entity—Not defined in HTML5
Plain capital LL (U+004C)Different letter

When to Use Which

SituationUse
Turned sans-serif capital L (⅂)⅂ or ⅂
Reversed sans-serif capital L (⅃)⅃
Script capital L (ℒ)ℒ (ℒ)
Plain capital LL (U+004C)
Generated text via ::before / ::aftercontent: "\2142"

Live Preview

Turned sans-serif capital L rendered next to related symbols.

Large glyph ⅂
Notation Symbol: ⅂
Compared ⅂  |  ⅃  |  ℒ  |  L
Hint Compare: Turned ⅂ | Reverse ⅃ | Script ℒ | Plain L
With entities Hex: ⅂ | Decimal: ⅂

Complete HTML Example

One page that shows the symbol with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⅂, plus a short comparison note.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Turned Sans-Serif Capital L (⅂)</title>
  <style>
    #point::after {
      content: "\2142";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2142;</p>
  <p>Using HTML Code: &#8514;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ⅂</p>
  <p>Not plain L or ⅃ (reversed)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2142 → &#x2142; in HTML. The browser turns it into ⅂.

2. Decimal: same code point as 8514 → &#8514;. Same result as hex.

3. CSS: use \2142 in content (not an HTML entity). #point::after appends that ⅂ after the paragraph text.

4. Typed / compare: paste ⅂ in UTF-8. Keep plain L and reversed ⅃ as separate characters.

Pitfalls & Tips

Common mistakes when working with U+2142.

Named?

No named entity

HTML5 does not define a named entity for U+2142. Use &#x2142; or &#8514;.

vs L

Not plain capital L

Keyboard L is U+004C. Use U+2142 only for the turned letterlike symbol.

vs ⅃

Not reversed

⅃ is reversed (mirrored) sans-serif L. ⅂ is turned (rotated). They look different and are separate code points.

vs ℒ

Not script L

ℒ (&Lscr;) is script capital L (Laplace). Do not swap turned and script forms.

CSS vs HTML

Do not mix escapes

\2142 belongs in CSS strings. &#x2142; / &#8514; belong in HTML.

Fonts

Letterlike coverage

Some UI fonts omit Letterlike Symbols. Prefer a font with solid U+2100–U+214F coverage if the glyph is missing.

Browser Support

Turned sans-serif capital L (U+2142) and its entity forms (&#x2142;, &#8514;, CSS \\2142) are supported in all mainstream browsers. Visible glyphs depend on Letterlike Symbols font coverage.

✓ Universal support

L Turned Sans Serif Capital (&#x2142;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes
U+2142 / entities Full support

Bottom line: Prefer &#x2142; or &#8514; in HTML. Use \\2142 only inside CSS content. There is no named entity. Do not confuse with plain L, ⅃, or ℒ.

Key Takeaways

  • Unicode: this symbol is U+2142 (decimal 8514) — glyph ⅂.
  • HTML: use &#x2142; or &#8514; — no named entity; typing ⅂ also works.
  • CSS: use \2142 inside content for generated text.
  • Watch out: ⅂ ≠ plain L ≠ ⅃ (reversed) ≠ ℒ (script).

One line: U+2142 → &#x2142; / &#8514; / CSS \2142.

Frequently Asked Questions

Use &#x2142; (hex), &#8514; (decimal), type ⅂ directly in UTF-8, or the CSS escape \2142 in content. There is no named HTML entity for U+2142.
U+2142 (TURNED SANS-SERIF CAPITAL L). Hex 2142, decimal 8514. It belongs to Letterlike Symbols (U+2100–U+214F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#8514; or &#x2142;.
No. ⅂ is turned (rotated) sans-serif capital L (U+2142). Plain L is U+004C. ⅃ is reversed (mirrored) sans-serif capital L (U+2143).
Use it for typographic or special-symbol displays that need a turned sans-serif L — not as a substitute for plain L in normal words.
HTML entities (&#8514; or &#x2142;) go in markup. The CSS escape \2142 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Turned sans-serif capital L (⅂) is Unicode U+2142 (decimal 8514) — TURNED SANS-SERIF CAPITAL L in Letterlike Symbols (U+2100–U+214F). HTML5 has no named entity — use &#x2142; or &#8514;. It is a rotated stylized L, not plain capital L. Do not confuse with reversed ⅃ (U+2143) or script ℒ (&Lscr;, U+2112).

Next: Uppercase LJ

Learn the HTML entity for uppercase LJ digraph (U+01C7).

Continue tutorial →

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