HTML Entity for Uppercase L Reverse Sans Serif Capital (⅃)

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

What Is Uppercase L Reverse Sans Serif Capital?

Reversed sans-serif capital L (⅃) is the Unicode character at U+2143 in Letterlike Symbols. Official name: REVERSED SANS-SERIF CAPITAL L — a mirrored stylized L used as a special typographic symbol, not as plain letter L.

Remember
Character     ⅃
Unicode       U+2143
Hex entity    ⅃
Decimal       ⅃
CSS escape    \2143
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\2143Stylesheet content
Named entity—Not defined in HTML5
Plain capital LL (U+004C)Different letter

When to Use Which

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

Live Preview

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

Large glyph ⅃
Notation Symbol: ⅃
Compared ⅃  |  ⅂  |  ℒ  |  L
Hint Compare: Reverse ⅃ | Turned ⅂ | 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>Reversed Sans-Serif Capital L (⅃)</title>
  <style>
    #point::after {
      content: "\2143";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2143;</p>
  <p>Using HTML Code: &#8515;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ⅃</p>
  <p>Not plain L or ⅂ (turned)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2143 → &#x2143; in HTML. The browser turns it into ⅃.

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

3. CSS: use \2143 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 turned ⅂ as separate characters.

Pitfalls & Tips

Common mistakes when working with U+2143.

Named?

No named entity

HTML5 does not define a named entity for U+2143. Use &#x2143; or &#8515;.

vs L

Not plain capital L

Keyboard L is U+004C. Use U+2143 only for the reversed letterlike symbol.

vs ⅂

Not turned

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

vs ℒ

Not script L

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

CSS vs HTML

Do not mix escapes

\2143 belongs in CSS strings. &#x2143; / &#8515; 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

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

✓ Universal support

L Reverse Sans Serif Capital (&#x2143;)

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+2143 / entities Full support

Bottom line: Prefer &#x2143; or &#8515; in HTML. Use \\2143 only inside CSS content. There is no named entity. Do not confuse with plain L, ⅂, or ℒ.

Key Takeaways

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

One line: U+2143 → &#x2143; / &#8515; / CSS \2143.

Frequently Asked Questions

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

Did you know?

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

Next: Uppercase L Script Capital

Learn the HTML entity for script capital L (U+2112).

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