HTML Entity for Uppercase IJ (IJ)

What You'll Learn
How to display the uppercase IJ ligature (IJ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. In Dutch typography, ij is often treated as a single letter; when capitalized, both letters form one unit (as in IJsselmeer). The precomposed ligature character is U+0132 in the Latin Extended-A block.
Render it with IJ, IJ, IJ, or CSS escape \132. The named entity IJ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase IJ Ligature
U+0132Latin Extended-A
IJHexadecimal reference
IJDecimal reference
IJMost readable option
Name Value
──────────── ──────────
Unicode U+0132
Hex code IJ
HTML code IJ
Named entity IJ
CSS code \132
Meaning Latin capital ligature IJ
Related U+0133 = ij (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase IJ ligature (IJ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\132";
}
</style>
</head>
<body>
<p>Symbol (hex): IJ</p>
<p>Symbol (decimal): IJ</p>
<p>Symbol (named): IJ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase IJ ligature (IJ) and the named entity IJ are supported in modern browsers when fonts include Latin Extended-A:
👀 Live Preview
See the uppercase IJ ligature (IJ) in Dutch and Afrikaans contexts:
ij)IJ (two letters) | Ij (mixed case)🧠 How It Works
Named Entity
IJ is the standard named entity for IJ—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
IJ uses the Unicode hexadecimal value 132 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
IJ uses the decimal Unicode value 306 to display the same character. A common method for Latin Extended-A ligatures.
CSS Entity
\132 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: IJ. Unicode U+0132 sits in Latin Extended-A. Lowercase equivalent: U+0133 (ij). In Dutch, capital ij at the start of a word is often written as two letters (IJ); the ligature IJ is used when a single precomposed character is needed.
Use Cases
The uppercase IJ ligature (IJ) is commonly used in:
Proper names and place names with capital IJ (e.g. IJsselmeer, IJmuiden) when a ligature glyph is preferred.
Afrikaans text derived from Dutch where the capital ij digraph appears.
Academic papers and language reference materials discussing Dutch ligatures and digraphs.
Dictionaries and apps teaching correct Dutch spelling and capitalization rules.
Publishing, signage, and design requiring accurate ligature representation.
Dutch or Afrikaans locale sites with proper character rendering and search indexing.
Correct spelling with lang="nl" helps screen readers and assistive technologies.
💡 Best Practices
Do
- Use
IJin HTML when possible for readability - Serve pages as UTF-8; you can also type IJ directly in UTF-8 source
- Set
lang="nl"orlang="af"on Dutch/Afrikaans content - Use fonts that support Latin Extended-A (Segoe UI, Noto Sans, Arial)
- Follow your style guide: many Dutch texts use two-letter
IJrather than the ligature
Don’t
- Put CSS escape
\132in HTML text nodes - Confuse the ligature IJ with separate letters
IandJ - Use padded Unicode notation like U+00132—the correct value is
U+0132 - Use
\00132in CSS—the correct escape is\132 - Assume every font includes U+0132 without testing
Key Takeaways
Four references render IJ; named entity is most readable
IJ IJ IJFor CSS stylesheets, use the escape in the content property
\132Unicode U+0132 — LATIN CAPITAL LIGATURE IJ
Essential for Dutch/Afrikaans typography and multilingual i18n content
Previous: Uppercase I Umlaut (Ï) Next: Uppercase J
❓ Frequently Asked Questions
IJ (named), IJ (hex), IJ (decimal), or \132 in CSS content. All four methods render IJ correctly.U+0132 (LATIN CAPITAL LIGATURE IJ). Latin Extended-A block. Hex 132, decimal 306. Used in Dutch and Afrikaans typography.IJ instead—follow your project’s convention.IJ or IJ) or the named entity IJ is used in HTML content. The CSS entity (\132) is used in CSS, e.g. in the content property of pseudo-elements. Both produce IJ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
