HTML Entity for Uppercase Lj Small (Lj)

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

What You'll Learn

How to display the titlecase Lj ligature (Lj) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01C8 (LATIN CAPITAL LETTER L WITH SMALL LETTER J) in Latin Extended-B (U+0180–U+024F)—the form used at the start of words in South Slavic Latin script.

Render it with Lj, Lj, or CSS escape \01C8. There is no named HTML entity. Do not confuse with uppercase LJ (U+01C7) or lowercase lj (U+01C9).

⚡ Quick Reference — Titlecase Lj

Unicode U+01C8

Latin Extended-B

Hex Code Lj

Hexadecimal reference

HTML Code Lj

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01C8
Hex code       Lj
HTML code      Lj
Named entity   (none)
CSS code       \01C8
Meaning        Titlecase Lj ligature (capital L + small j)
Uppercase      U+01C7 = LJ
Lowercase      U+01C9 = lj
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing titlecase Lj (Lj) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01C8";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01C8;</p>
<p>Symbol (decimal): &#456;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

Titlecase Lj (Lj) is supported in modern browsers when the font includes Latin Extended-B:

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

👀 Live Preview

See titlecase Lj (Lj) in typical language and typography contexts:

Large glyphLj
Unicode nameLATIN CAPITAL LETTER L WITH SMALL LETTER J
Upper/title/lowerLJ Lj lj
In textljubav / Ljubav / LJUBAV
Numeric refs&#x01C8; &#456; \01C8

🧠 How It Works

1

Hexadecimal Code

&#x01C8; uses the Unicode hexadecimal value 01C8 to display the character.

HTML markup
2

Decimal HTML Code

&#456; uses the decimal Unicode value 456 to display the same character.

HTML markup
3

CSS Entity

\01C8 is used in CSS stylesheets, typically in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Lj. Unicode U+01C8 is the titlecase Lj form. Do not confuse with LJ (U+01C7) or lj (U+01C9), or separate L + j letters.

Use Cases

Titlecase Lj (Lj) is commonly used in:

✍️ Sentence-start spelling

Words like Ljubav at the beginning of sentences in Croatian and Serbian Latin text.

🌐 Multilingual sites

Websites serving Croatian, Serbian, or Bosnian-speaking audiences.

📚 Language learning

Textbooks showing the three LJ case forms (upper, title, lower).

📋 Linguistics

Orthography notes and digraph references in Slavic language studies.

📖 Typography

Font testing for Latin Extended-B ligature support.

⚙ CSS content

Pseudo-elements and generated content using \01C8 in stylesheets.

💡 Best Practices

Do

  • Use Lj for titlecase Lj at word starts; use LJ for all-caps and lj for lowercase
  • Use numeric references (&#x01C8; or &#456;) in HTML for portability
  • Use \01C8 in CSS content when inserting via pseudo-elements
  • Ensure your font supports Latin Extended-B for consistent rendering
  • Serve pages as UTF-8; you can also type Lj directly in UTF-8 source

Don’t

  • Substitute separate L + j when the ligature character is required
  • Use padded Unicode like U+001C8—the correct value is U+01C8
  • Use \001C8 in CSS—the correct escape is \01C8
  • Confuse titlecase Lj with uppercase LJ or lowercase lj
  • Put the CSS escape \01C8 directly in HTML text nodes

Key Takeaways

1

Three references render Lj (no named entity)

&#x01C8; &#456;
2

For CSS stylesheets, use the escape in the content property

\01C8
3

Unicode U+01C8 — titlecase Lj (capital L + small j)

4

LJ family: LJ (U+01C7), Lj (U+01C8), lj (U+01C9)

5

Previous: Uppercase LJ (LJ)   Next: Uppercase M

❓ Frequently Asked Questions

Use &#x01C8; (hex), &#456; (decimal), or \01C8 in CSS content. All produce Lj. There is no named HTML entity.
U+01C8 (LATIN CAPITAL LETTER L WITH SMALL LETTER J). Hex 01C8, decimal 456. Uppercase LJ (U+01C7), lowercase lj (U+01C9).
At the start of words in Croatian, Serbian, and Bosnian Latin text (e.g. Ljubav), in multilingual websites, language-learning resources, and anywhere the titlecase ligature form is required.
No. Lj (U+01C8) is a single Unicode ligature character. Separate L and j are two code points and may sort, search, or display differently from the proper ligature form.
LJ (LJ) is the all-uppercase LJ form. Lj (Lj) is titlecase (capital L + small j). lj (lj) is lowercase. All three are distinct Unicode characters in Latin Extended-B.

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