HTML Entity for Lowercase I Caron (ǐ)

What You'll Learn
How to display the lowercase i with caron (ǐ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+01D0 in the Latin Extended-B block and is widely used in Hanyu Pinyin to represent the third tone on the vowel i, as well as in transliteration and linguistic contexts.
Render it with &icaron;, ǐ, ǐ, or CSS escape \01D0. The named entity &icaron; is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase I Caron Entity
U+01D0Latin Extended-B
ǐHexadecimal reference
ǐDecimal reference
&icaron;Most readable option
Name Value
──────────── ──────────
Unicode U+01D0
Hex code ǐ
HTML code ǐ
Named entity &icaron;
CSS code \01D0
Meaning Latin small letter i with caron
Related U+01CF = &Icaron; (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase i caron (ǐ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01D0";
}
</style>
</head>
<body>
<p>Symbol (hex): ǐ</p>
<p>Symbol (decimal): ǐ</p>
<p>Symbol (named): &icaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase i caron (ǐ) and the named entity &icaron; are supported in modern browsers:
👀 Live Preview
See the lowercase i caron (ǐ) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ǐ uses the Unicode hexadecimal value 1D0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǐ uses the decimal Unicode value 464 to display the same character. A common method for Latin Extended-B characters.
Named Entity
&icaron; is the standard named entity for ǐ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\01D0 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+01D0 sits in Latin Extended-B. Uppercase equivalent: U+01CF (&Icaron;). Do not confuse with plain i (U+0069), acute í (í), or breve &ibreve; (ĭ).
Use Cases
The lowercase i caron (ǐ) is commonly used in:
ǐ is used in Hanyu Pinyin to represent the third tone on the vowel i (e.g. nǐ).
Pronunciation guides and language-learning content showing tones and accents accurately.
Romanization and transliteration content that relies on caron diacritics.
Academic writing where diacritics help indicate pronunciation and tone.
Demonstrating Unicode normalization and diacritic handling in text processing.
Correct diacritics improve clarity for readers and assistive technologies.
Latin Extended-B characters and diacritic rendering in fonts and design systems.
💡 Best Practices
Do
- Use
&icaron;in HTML when possible for readability - Serve pages as UTF-8; you can also type ǐ directly in UTF-8 source
- Use fonts that support Latin Extended-B characters
- Pick one entity style (hex, decimal, or named) per project
- Distinguish ǐ (caron) from í (acute), ĭ (breve), and plain
i
Don’t
- Substitute plain
iwhen ǐ is required for correct Pinyin - Confuse caron ǐ with acute í or breve ĭ
- Put CSS escape
\01D0in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render ǐ; named entity is most readable
ǐ ǐ &icaron;For CSS stylesheets, use the escape in the content property
\01D0Unicode U+01D0 — LATIN SMALL LETTER I WITH CARON
Essential for Pinyin third tone, transliteration, and linguistic content
Previous: Lowercase I Breve (ĭ) Next: Lowercase I Circumflex (î)
❓ Frequently Asked Questions
&icaron; (named), ǐ (hex), ǐ (decimal), or \01D0 in CSS content. The named entity &icaron; is the most readable for HTML content.U+01D0 (LATIN SMALL LETTER I WITH CARON). Latin Extended-B block. Hex 1D0, decimal 464. Commonly used in Pinyin for the third tone on i.ǐ or ǐ) or the named entity &icaron; is used in HTML content. The CSS entity (\01D0) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ǐ but in different contexts.&icaron; is often preferred for hand-authored HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
