HTML Entity for Lj (lj)

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

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

Unicode U+01C9

Latin Extended-B

Hex Code lj

Hexadecimal reference

HTML Code lj

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01C9";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01C9;</p>
<p>Symbol (decimal): &#457;</p>
<p id="point">Symbol (CSS): </p>
<p>Text example: ljubav (starts with lj)</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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 Lj (lj) in typical language and typography contexts:

Large glyphlj
Lower/title/upperlj Lj LJ
In textljubav / Ljubav / LJUBAV
Numeric refs&#x01C9; &#457; \01C9

🧠 How It Works

1

Hexadecimal Code

&#x01C9; uses the Unicode hexadecimal value 01C9 to display the character.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01C9 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+01C9 is in Latin Extended-B. There is no named HTML entity.

Use Cases

Lj (lj) is commonly used in:

✍️ Serbian & Croatian

Correct spelling with the lj digraph in South Slavic Latin-script content.

📚 Language learning

Textbooks and resources that show the single-character digraph form.

🌐 Localization

International web pages that include Latin Extended-B characters.

📋 Linguistics

Orthography notes, digraph discussions, and character references.

📖 Typography

Font testing and examples showing extended Latin support.

📝 Documentation

Unicode reference pages and HTML entity tutorials for Latin letters.

💡 Best Practices

Do

  • Use numeric references (&#x01C9; or &#457;) in HTML for portability
  • Use \01C9 in CSS content when 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 \01C9 directly 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

1

Three references render lj (no named entity)

&#x01C9; &#457;
2

For CSS stylesheets, use the escape in the content property

\01C9
3

Unicode U+01C9 — LATIN SMALL LETTER LJ

4

Upper/title variants: LJ (U+01C7), Lj (U+01C8), lj (U+01C9)

5

Previous: Livre Tournois Sign   Next: Logical OR

❓ Frequently Asked Questions

Use &#x01C9; (hex), &#457; (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).
Use lj when the orthography or typography style requires the single-character digraph (common in language resources and character references). In general text, many systems still use the two-letter digraph “lj”.
HTML references (&#457; or &#x01C9;) go in markup. The CSS escape \01C9 goes in stylesheets. Both render lj.
Extended Latin letters like U+01C9 are not part of the named HTML entity set. Numeric references and CSS escapes are the standard way to render lj.

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