HTML Entity for Uppercase LJ (LJ)

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

What You'll Learn

How to display the uppercase LJ ligature (LJ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01C7 (LATIN CAPITAL LETTER L WITH SMALL LETTER J) in Latin Extended-B (U+0180–U+024F).

Render it with LJ, LJ, or CSS escape \01C7. There is no named HTML entity. The LJ ligature is used in Croatian, Serbian, and related South Slavic languages written in Latin script.

⚡ Quick Reference — Uppercase LJ

Unicode U+01C7

Latin Extended-B

Hex Code LJ

Hexadecimal reference

HTML Code LJ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

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

🌐 Browser Support

Uppercase 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 uppercase 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&#x01C7; &#455; \01C7

🧠 How It Works

1

Hexadecimal Code

&#x01C7; uses the Unicode hexadecimal value 01C7 to display the character.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01C7 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+01C7 is in Latin Extended-B. There is no named HTML entity. Do not confuse with separate L + J letters.

Use Cases

Uppercase LJ (LJ) is commonly used in:

✍️ Croatian & Serbian

All-caps spelling with the LJ digraph in South Slavic Latin-script content.

🌐 Multilingual sites

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

📚 Language learning

Textbooks and resources showing uppercase ligature forms.

📋 Linguistics

Orthography notes, digraph discussions, and character references.

📖 Typography

Font testing and examples showing extended Latin ligature support.

⚙ CSS content

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

💡 Best Practices

Do

  • Use numeric references (&#x01C7; or &#455;) in HTML for portability
  • Use \01C7 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)
  • Know the three LJ variants: LJ (upper), Lj (title), lj (lower)

Don’t

  • Put the CSS escape \01C7 directly in HTML text nodes
  • Substitute separate L + J when the ligature character is required
  • Use padded Unicode like U+001C7—the correct value is U+01C7
  • Use \001C7 in CSS—the correct escape is \01C7
  • Assume every font shows LJ correctly—test on mobile devices

Key Takeaways

1

Three references render LJ (no named entity)

&#x01C7; &#455;
2

For CSS stylesheets, use the escape in the content property

\01C7
3

Unicode U+01C7 — LATIN CAPITAL LETTER L WITH SMALL LETTER J

4

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

❓ Frequently Asked Questions

Use &#x01C7; (hex), &#455; (decimal), or \01C7 in CSS content. All produce LJ. There is no named HTML entity.
U+01C7 (LATIN CAPITAL LETTER L WITH SMALL LETTER J). Hex 01C7, decimal 455. Titlecase Lj (U+01C8), lowercase lj (U+01C9).
In Croatian, Serbian, and Bosnian Latin content when all-caps spelling requires the LJ digraph, in multilingual websites, language-learning resources, and linguistics references where the single-character form is preferred.
No. LJ (U+01C7) 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.
HTML references (&#455; or &#x01C7;) go in markup. The CSS escape \01C7 goes in stylesheets. Both 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