HTML Entity for Uppercase I Caron (Ǐ)

What You'll Learn
How to display the uppercase I with caron (Ǐ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01CF in the Latin Extended-B block. The caron (háček) is a wedge-shaped diacritic used in Czech, Slovak, and other writing systems.
Render it with Ǐ, Ǐ, or CSS escape \01CF. There is no named HTML entity. In UTF-8 you can also type Ǐ directly in source.
⚡ Quick Reference — Uppercase I Caron Entity
U+01CFLatin Extended-B
ǏHexadecimal reference
ǏDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+01CF
Hex code Ǐ
HTML code Ǐ
Named entity (none)
CSS code \01CF
Meaning Latin capital letter I with caron
Related U+01D0 = ǐ (lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
This example demonstrates the uppercase I caron (Ǐ) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this character:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01CF";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǐ</p>
<p>Symbol (decimal): Ǐ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase I caron (Ǐ) numeric references and CSS escape are supported in modern browsers:
👀 Live Preview
See the uppercase I caron (Ǐ) in linguistic and content contexts:
🧠 How It Works
Hexadecimal Code
Ǐ uses the Unicode hexadecimal value 1CF to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǐ uses the decimal Unicode value 463 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01CF is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ǐ. Unicode U+01CF sits in Latin Extended-B. Lowercase equivalent: U+01D0 (ǐ). No named HTML entity—use numeric codes in markup. Do not confuse with plain I (U+0049), acute Í (Í), or breve Ĭ (U+012C).
Use Cases
The uppercase I caron (Ǐ) is commonly used in:
Proper names and words requiring the háček diacritic on capital I at sentence boundaries.
Transliteration systems and comparative linguistics using caron-marked vowels.
Websites and apps serving Czech- or Slovak-speaking audiences.
Personal and place names that include Ǐ when capitalized.
Scholarly papers and language documentation with extended Latin characters.
Courses teaching Czech, Slovak, or caron diacritics on vowels.
Correct rendering so users can find content with proper diacritic spelling.
💡 Best Practices
Do
- Use
ǏorǏfor readable HTML markup - Serve pages as UTF-8; you can also type Ǐ directly in UTF-8 source
- Set
langattributes (e.g.lang="cs"orlang="sk") for correct pronunciation - Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ǐ (caron) from Í (acute) and Ĭ (breve)
Don’t
- Substitute plain
Iwhen Ǐ is required for correct spelling - Expect a named entity—none exists for U+01CF
- Confuse caron Ǐ with acute Í or breve Ĭ
- Put CSS escape
\01CFin HTML text nodes - Use padded Unicode notation like U+001CF—the correct value is
U+01CF - Use
\001CFin CSS—the correct escape is\01CF
Key Takeaways
Two HTML numeric references plus CSS render Ǐ
Ǐ ǏFor CSS stylesheets, use the escape in the content property
\01CFUnicode U+01CF — LATIN CAPITAL LETTER I WITH CARON
Essential for Czech, Slovak, and Central European i18n content
Three methods, no named HTML entity
❓ Frequently Asked Questions
Ǐ (hex), Ǐ (decimal), or \01CF in CSS content. There is no named entity.U+01CF (LATIN CAPITAL LETTER I WITH CARON). Latin Extended-B block. Hex 1CF, decimal 463. Used in Czech, Slovak, and transliteration systems.Ǐ or Ǐ) go in HTML content. The CSS escape (\01CF) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ǐ but in different contexts.Ǐ or Ǐ in markup, or \01CF in CSS. Related caron letters like Ě (Ě) do have named entities.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
