HTML Entity for Ij (ij)

What You'll Learn
How to display the Ij ligature (ij) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. The ij digraph is used in Dutch and Afrikaans as a single typographic and often phonetic unit.
This character is U+0133 (LATIN SMALL LIGATURE IJ) in the Latin Extended-A block (U+0100–U+017F). Render it with ij, ij, ij, or CSS \0133.
⚡ Quick Reference — Ij Ligature
U+0133Latin Extended-A
ijHexadecimal reference
ijDecimal reference
ijMost readable option
Name Value
──────────── ──────────
Unicode U+0133
Hex code ij
HTML code ij
Named entity ij
CSS code \0133
Meaning Dutch/Afrikaans ij ligature
CSS note \0133 or \00133 in content propertyComplete HTML Example
This example demonstrates the 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: "\0133";
}
</style>
</head>
<body>
<p>Ij using Hexadecimal: ij</p>
<p>Ij using Decimal: ij</p>
<p>Ij using Named Entity: ij</p>
<p id="point">Ij using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Ij ligature (ij) is supported in all modern browsers when fonts include Latin Extended-A (U+0100–U+017F):
👀 Live Preview
See the Ij ligature (ij) in Dutch and Afrikaans text:
🧠 How It Works
Hexadecimal Code
ij uses the Unicode hexadecimal value 0133 to display the Ij ligature (ij). The x prefix indicates hexadecimal format.
Decimal HTML Code
ij uses the decimal Unicode value 307 to display the same character. This is one of the most commonly used methods.
CSS Entity
\0133 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Named Entity
ij is the named entity for ij—easy to remember and clear in source HTML.
Same visual result
All four methods produce the glyph: ij. Unicode U+0133 is in Latin Extended-A. Next: Image Of.
Use Cases
The Ij ligature (ij) is commonly used in:
Words with ij (e.g. bijna, gelijk, ijzer) in articles and websites.
Proper nouns such as IJsselmeer, IJmuiden, and surnames with ij.
Afrikaans text where the ij character appears in Dutch-derived words.
Dictionaries and apps showing correct Dutch/Afrikaans spelling.
Typographically correct Dutch and Afrikaans in publishing and signage.
Dutch or Afrikaans locale sites with proper character rendering.
💡 Best Practices
Do
- Use
ijor numeric codes for correct Dutch/Afrikaans ij - Keep one method (named, hex, or decimal) consistent per document
- Use fonts with Latin Extended-A support (Segoe UI, Noto Sans, Arial)
- Declare UTF-8 with
<meta charset="utf-8"> - For capitals, use
IJor “IJ” per your style guide (e.g. IJsselmeer)
Don’t
- Put CSS escape
\0133in HTML text nodes - Use separate “i” and “j” when the ligature ij is typographically required
- Mix entity styles randomly in one file
- Assume every font includes U+0133
- Skip browser testing for Dutch/Afrikaans localized pages
Key Takeaways
Four methods all render ij
ij ij ijFor CSS stylesheets, use the escape in the content property
\0133Unicode U+0133 — LATIN SMALL LIGATURE IJ (Latin Extended-A)
Prefer ij for readability in HTML source
Next: Image Of
❓ Frequently Asked Questions
ij (hex), ij (decimal), ij (named), or \0133 in CSS content. All produce ij.U+0133 (LATIN SMALL LIGATURE IJ). Latin Extended-A block (U+0100–U+017F). Hex 0133, decimal 307. Named entity: ij. Used in Dutch and Afrikaans.ij, ij, or ij) go in markup. The CSS escape \0133 belongs in stylesheets, typically in the content property of pseudo-elements. Both render ij.ij is the named HTML entity for ij (ij ligature). It is part of the HTML5 entity set and is well supported in modern browsers.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
