HTML Entity for Uppercase I Black Letter Capital (ℑ)

What You'll Learn
How to display the black-letter capital I (ℑ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Letterlike Symbols block and is widely used in mathematics to denote the imaginary part of a complex number. Its official Unicode name is BLACK-LETTER CAPITAL I (U+2111).
Render it with ℑ, ℑ, ℑ, or CSS escape \2111. Despite the unusual entity name ℑ, it refers to the imaginary-part symbol, not an HTML image element. See also math entities.
⚡ Quick Reference — Uppercase I Black Letter Capital Entity
U+2111Letterlike Symbols
ℑHexadecimal reference
ℑDecimal reference
ℑImaginary part symbol
Name Value
──────────── ──────────
Unicode U+2111
Hex code ℑ
HTML code ℑ
Named entity ℑ
CSS code \2111
Meaning Black-letter capital I (imaginary part)
Related U+0049 = plain I; U+00CD = Í (I acute)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the black-letter capital I (ℑ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2111";
}
</style>
</head>
<body>
<p>Symbol (hex): ℑ</p>
<p>Symbol (decimal): ℑ</p>
<p>Symbol (named): ℑ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The black-letter capital I (ℑ) and the named entity ℑ are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the black-letter capital I (ℑ) in mathematical and typographic contexts:
🧠 How It Works
Hexadecimal Code
ℑ uses the Unicode hexadecimal value 2111 to display the black-letter capital I. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℑ uses the decimal Unicode value 8465 to display the same character. A common method for Letterlike Symbols.
Named Entity
ℑ is the standard named entity for ℑ—despite the name, it denotes the imaginary-part operator in mathematics, not an HTML image.
CSS Entity
\2111 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: ℑ. Unicode U+2111 sits in Letterlike Symbols. Do not confuse with plain I (U+0049) or Í (I acute, U+00CD).
Use Cases
The black-letter capital I (ℑ) is commonly used in:
Imaginary-part operator ℑ(z) in equations involving complex numbers and signal processing.
Electrical engineering, control theory, and physics documentation using complex notation.
Research papers and scholarly publications in mathematics and mathematical physics.
Mathematics and science textbooks teaching complex numbers and Fourier analysis.
Black-letter (Fraktur-style) I in formal mathematical typesetting and design.
Online courses, scientific blogs, and interactive math tools needing proper ℑ rendering.
Technical specs and API docs for libraries that work with complex-valued data.
💡 Best Practices
Do
- Use
ℑin HTML when possible for readability in math content - Serve pages as UTF-8; you can also type ℑ directly in UTF-8 source
- Use math-friendly fonts (e.g. Cambria Math, STIX) for reliable black-letter glyph display
- Distinguish ℑ (imaginary part) from plain
I(U+0049) and Í (I acute) - Pick one entity style (named, hex, or decimal) per project for consistency
Don’t
- Confuse
ℑwith the HTML<img>element—they are unrelated - Substitute plain
Iwhen ℑ is required for imaginary-part notation - Put CSS escape
\2111in HTML text nodes - Use padded Unicode notation like U+02111—the correct value is
U+2111 - Use
\02111in CSS—the correct escape is\2111
Key Takeaways
Four references render ℑ; named entity is most readable
ℑ ℑ ℑFor CSS stylesheets, use the escape in the content property
\2111Unicode U+2111 — BLACK-LETTER CAPITAL I
Essential for imaginary-part notation in complex analysis
Previous: Uppercase I Acute Next: Uppercase I Breve
❓ Frequently Asked Questions
ℑ (named), ℑ (hex), ℑ (decimal), or \2111 in CSS content. The named entity ℑ is the most readable for HTML content.U+2111 (BLACK-LETTER CAPITAL I). Letterlike Symbols block. Hex 2111, decimal 8465. Used in mathematics to denote the imaginary part of a complex number.ℑ or ℑ) or the named entity ℑ is used in HTML content. The CSS entity (\2111) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℑ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, script letters, and more.
8 people found this page helpful
