HTML Entity for Double Struck Italic Small J (ⅉ)

What You'll Learn
How to display the Double Struck Italic Small J (ⅉ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2149 (DOUBLE-STRUCK ITALIC SMALL J) in the Letterlike Symbols block (U+2100–U+214F)—used in mathematics (e.g. quaternions) and engineering notation.
Render it with ⅉ, ⅉ, or CSS escape \2149. There is no named HTML entity for U+2149. For imaginary unit i use ⅈ (U+2148, ⅈ). See also math entities.
⚡ Quick Reference — Double Struck Italic Small J
U+2149Letterlike Symbols block
ⅉHexadecimal reference
ⅉDecimal reference
—Not available for U+2149
Name Value
──────────── ──────────
Unicode U+2149
Hex code ⅉ
HTML code ⅉ
Named entity —
CSS code \2149
Related U+2148 = Small i (ⅈ)Complete HTML Example
This example demonstrates the Double Struck Italic Small J (ⅉ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2149";
}
</style>
</head>
<body>
<p>Double Struck Italic Small J using Hexadecimal: ⅉ</p>
<p>Double Struck Italic Small J using HTML Code: ⅉ</p>
<p id="point">Double Struck Italic Small J using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2149 is widely supported in modern browsers when rendered with a font that includes Letterlike Symbols:
👀 Live Preview
See the Double Struck Italic Small J (ⅉ) in mathematical notation:
🧠 How It Works
Hexadecimal Code
ⅉ uses the Unicode hexadecimal value 2149 to display the Double Struck Italic Small J. The x prefix indicates hexadecimal format.
Decimal HTML Code
ⅉ uses the decimal Unicode value 8521 to display the same character.
CSS Entity
\2149 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⅉ. Unicode U+2149. Imaginary i: ⅈ (ⅈ, U+2148). No named entity for U+2149.
Use Cases
The Double Struck Italic Small J (ⅉ) commonly appears in:
Mathematics where ⅉ denotes a quaternion unit (with ⅈ and k) in quaternion algebra and 3D rotations.
Conventions using j for the imaginary unit; ⅉ can denote this in double-struck form.
Textbooks, papers, and course materials requiring letterlike math symbols in HTML.
Equation editors and math rendering alongside other double-struck italic letters.
Entity lists and guides for Letterlike Symbols (U+2100–U+214F).
Use math-capable fonts so ⅉ renders clearly for all readers.
💡 Best Practices
Do
- Use
ⅉorⅉfor ⅉ - Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
- Distinguish ⅉ (j) from ⅈ (
ⅈ, imaginary i) - Use
\2149only inside CSScontent - Keep entity style consistent across the document
Don’t
- Assume a named entity exists for U+2149—it does not
- Use
ⅈwhen you need small j ⅉ - Put CSS escape
\2149in HTML text nodes - Forget UTF-8 (
<meta charset="utf-8">) on math pages - Assume every font includes Letterlike Symbols
Key Takeaways
No named entity—use numeric references
ⅉ ⅉFor CSS stylesheets, use the escape in the content property
\2149Unicode U+2149 DOUBLE-STRUCK ITALIC SMALL J
Small i: ⅈ via ⅈ or ⅈ
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
ⅉ (hex), ⅉ (decimal), or \2149 in CSS content. All produce ⅉ. There is no named HTML entity for U+2149.U+2149 (DOUBLE-STRUCK ITALIC SMALL J). Letterlike Symbols block (U+2100–U+214F). Hex 2149, decimal 8521. Double-struck italic form of Latin small letter j.ⅉ or ⅉ) go in markup. The CSS escape \2149 is used in stylesheets, typically in the content property of pseudo-elements.ⅈ, ⅇ, and ⅆ have named entities, but U+2149 does not. Use numeric codes or CSS. For imaginary unit i use ⅈ (U+2148, ⅈ).Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, letterlike glyphs, and more.
8 people found this page helpful
