HTML Entity for Lj (lj)

What You'll Learn
How to display the Lj (lj) character in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01C9 (LATIN SMALL LETTER LJ) in Latin Extended-B (U+0180–U+024F).
Render it with lj, lj, or CSS escape \01C9. There is no named HTML entity. Lj is a Latin digraph used in Serbian, Croatian, and related South Slavic languages in Latin script.
⚡ Quick Reference — Lj
U+01C9Latin Extended-B
ljHexadecimal reference
ljDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01C9
Hex code lj
HTML code lj
Named entity (none)
CSS code \01C9
Meaning Latin small letter lj (digraph)
Uppercase U+01C7 = LJ
Titlecase U+01C8 = Lj
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing Lj (lj) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01C9";
}
</style>
</head>
<body>
<p>Symbol (hex): lj</p>
<p>Symbol (decimal): lj</p>
<p id="point">Symbol (CSS): </p>
<p>Text example: ljubav (starts with lj)</p>
</body>
</html>🌐 Browser Support
Lj (lj) is supported in modern browsers when the font includes Latin Extended-B:
👀 Live Preview
See Lj (lj) in typical language and typography contexts:
🧠 How It Works
Hexadecimal Code
lj uses the Unicode hexadecimal value 01C9 to display the character.
Decimal HTML Code
lj uses the decimal Unicode value 457 to display the same character.
CSS Entity
\01C9 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+01C9 is in Latin Extended-B. There is no named HTML entity.
Use Cases
Lj (lj) is commonly used in:
Correct spelling with the lj digraph in South Slavic Latin-script content.
Textbooks and resources that show the single-character digraph form.
International web pages that include Latin Extended-B characters.
Orthography notes, digraph discussions, and character references.
Font testing and examples showing extended Latin support.
Unicode reference pages and HTML entity tutorials for Latin letters.
💡 Best Practices
Do
- Use numeric references (
ljorlj) in HTML for portability - Use
\01C9in CSScontentwhen inserting via pseudo-elements - Ensure your font supports Latin Extended-B for consistent rendering
- Use UTF-8 everywhere (HTML pages, templates, and databases)
- Be consistent: either use the single character (lj) or the digraph (lj) depending on your typography rules
Don’t
- Put the CSS escape
\01C9directly in HTML text nodes - Assume every font shows lj correctly—test on mobile devices
- Mix different digraph forms without a style rule
- Strip diacritics/extended letters during text processing
- Confuse lj with “lj” when exact spelling is required
Key Takeaways
Three references render lj (no named entity)
lj ljFor CSS stylesheets, use the escape in the content property
\01C9Unicode U+01C9 — LATIN SMALL LETTER LJ
Upper/title variants: LJ (U+01C7), Lj (U+01C8), lj (U+01C9)
Previous: Livre Tournois Sign Next: Logical OR
❓ Frequently Asked Questions
lj (hex), lj (decimal), or \01C9 in CSS content. All produce lj. There is no named HTML entity.U+01C9 (LATIN SMALL LETTER LJ). Hex 01C9, decimal 457. Uppercase LJ (U+01C7), titlecase Lj (U+01C8).lj or lj) go in markup. The CSS escape \01C9 goes in stylesheets. Both render lj.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
