HTML Entity for Uppercase Lj Small (Lj)

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
U+01C8Latin Extended-B
LjHexadecimal reference
LjDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing titlecase Lj (Lj) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01C8";
}
</style>
</head>
<body>
<p>Symbol (hex): Lj</p>
<p>Symbol (decimal): Lj</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
Titlecase Lj (Lj) is supported in modern browsers when the font includes Latin Extended-B:
👀 Live Preview
See titlecase Lj (Lj) in typical language and typography contexts:
🧠 How It Works
Hexadecimal Code
Lj uses the Unicode hexadecimal value 01C8 to display the character.
Decimal HTML Code
Lj uses the decimal Unicode value 456 to display the same character.
CSS Entity
\01C8 is used in CSS stylesheets, typically in the content property of pseudo-elements.
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:
Words like Ljubav at the beginning of sentences in Croatian and Serbian Latin text.
Websites serving Croatian, Serbian, or Bosnian-speaking audiences.
Textbooks showing the three LJ case forms (upper, title, lower).
Orthography notes and digraph references in Slavic language studies.
Font testing for Latin Extended-B ligature support.
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 (
LjorLj) in HTML for portability - Use
\01C8in CSScontentwhen 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+jwhen the ligature character is required - Use padded Unicode like U+001C8—the correct value is
U+01C8 - Use
\001C8in CSS—the correct escape is\01C8 - Confuse titlecase Lj with uppercase LJ or lowercase lj
- Put the CSS escape
\01C8directly in HTML text nodes
Key Takeaways
Three references render Lj (no named entity)
Lj LjFor CSS stylesheets, use the escape in the content property
\01C8Unicode U+01C8 — titlecase Lj (capital L + small j)
LJ family: LJ (U+01C7), Lj (U+01C8), lj (U+01C9)
Previous: Uppercase LJ (LJ) Next: Uppercase M
❓ Frequently Asked Questions
Lj (hex), Lj (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).L and j are two code points and may sort, search, or display differently from the proper ligature form.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
