HTML Entity for Uppercase I Script Capital (ℐ)

What You'll Learn
How to display the script capital I (ℐ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Letterlike Symbols block and is used in mathematical notation and script-style typography. Its official Unicode name is SCRIPT CAPITAL I (U+2110).
Render it with ℐ, ℐ, ℐ, or CSS escape \2110. The named entity ℐ is often the most readable option in HTML source. Do not confuse ℐ with ℑ (ℑ, imaginary part).
⚡ Quick Reference — Uppercase I Script Capital Entity
U+2110Letterlike Symbols
ℐHexadecimal reference
ℐDecimal reference
ℐMost readable option
Name Value
──────────── ──────────
Unicode U+2110
Hex code ℐ
HTML code ℐ
Named entity ℐ
CSS code \2110
Meaning Script capital I
Not the same U+2111 = ℑ (black-letter I, imaginary part)
Related U+2130 = ℰ (script E); U+2131 = ℱ (script F)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the script capital I (ℐ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2110";
}
</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 script capital I (ℐ) and the named entity ℐ are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the script capital I (ℐ) in mathematical and typographic contexts:
🧠 How It Works
Hexadecimal Code
ℐ uses the Unicode hexadecimal value 2110 to display the script capital I. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℐ uses the decimal Unicode value 8464 to display the same character. A common method for Letterlike Symbols.
Named Entity
ℐ is the standard named entity for ℐ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\2110 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+2110 sits in Letterlike Symbols. Do not confuse with plain I (U+0049) or ℑ (ℑ, imaginary part, U+2111).
Use Cases
The script capital I (ℐ) is commonly used in:
Script-style capital I in equations, set notation, and formal mathematical writing.
Elegant script lettering in calligraphy, invitations, and formal design projects.
Scholarly documents and research papers using script letter notation.
Special UI elements and unique text formatting requiring script-style characters.
Math courses teaching script letter conventions and notation.
Scientific blogs and online textbooks that need proper script I rendering.
Typography work and character set demonstrations for Letterlike Symbols.
💡 Best Practices
Do
- Use
ℐin HTML when possible for readability - 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 script glyph display
- Distinguish ℐ (script I) from ℑ (
ℑ, imaginary part) and plainI - Pick one entity style (named, hex, or decimal) per project for consistency
Don’t
- Substitute ℑ (
ℑ) when ℐ (ℐ) is required - Substitute plain
Iwhen ℐ is required in math or script notation - Put CSS escape
\2110in HTML text nodes - Use padded Unicode notation like U+02110—the correct value is
U+2110 - Use
\02110in CSS—the correct escape is\2110
Key Takeaways
Four references render ℐ; named entity is most readable
ℐ ℐ ℐFor CSS stylesheets, use the escape in the content property
\2110Unicode U+2110 — SCRIPT CAPITAL I
Not the same as ℑ (ℑ, imaginary part operator)
Previous: Uppercase I Ogonek (Į) Next: Uppercase I Stroke
❓ Frequently Asked Questions
ℐ (named), ℐ (hex), ℐ (decimal), or \2110 in CSS content. The named entity ℐ is the most readable for HTML content.U+2110 (SCRIPT CAPITAL I). Letterlike Symbols block. Hex 2110, decimal 8464. Used in mathematical notation and script-style typography.ℐ or ℐ) or the named entity ℐ is used in HTML content. The CSS entity (\2110) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℐ but in different contexts.ℐ. It is part of the standard HTML5 entity set and is well supported. Do not confuse with ℑ (ℑ, black-letter I for imaginary part).Explore More HTML Entities!
Discover 1500+ HTML character references — script letters, math symbols, and more.
8 people found this page helpful
