HTML Entity for Lowercase I Breve (ĭ)

What You'll Learn
How to display the lowercase i with breve (ĭ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+012D in the Latin Extended-A block and is commonly used in phonetic transcription and linguistic notation, where the breve often indicates a short vowel or other language-specific distinctions.
Render it with &ibreve;, ĭ, ĭ, or CSS escape \012D. The named entity &ibreve; is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase I Breve Entity
U+012DLatin Extended-A
ĭHexadecimal reference
ĭDecimal reference
&ibreve;Most readable option
Name Value
──────────── ──────────
Unicode U+012D
Hex code ĭ
HTML code ĭ
Named entity &ibreve;
CSS code \012D
Meaning Latin small letter i with breve
Related U+012C = &Ibreve; (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase i breve (ĭ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\012D";
}
</style>
</head>
<body>
<p>Symbol (hex): ĭ</p>
<p>Symbol (decimal): ĭ</p>
<p>Symbol (named): &ibreve;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase i breve (ĭ) and the named entity &ibreve; are supported in modern browsers:
👀 Live Preview
See the lowercase i breve (ĭ) in linguistic and content contexts:
🧠 How It Works
Hexadecimal Code
ĭ uses the Unicode hexadecimal value 12D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ĭ uses the decimal Unicode value 301 to display the same character. A common method for Latin Extended-A characters.
Named Entity
&ibreve; is the standard named entity for ĭ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\012D 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+012D sits in Latin Extended-A. Uppercase equivalent: U+012C (&Ibreve;). It canonically decomposes to i (U+0069) + combining breve (U+0306). Do not confuse with plain i, acute í (í), or dotless ı.
Use Cases
The lowercase i breve (ĭ) is commonly used in:
Notation where the breve indicates a short vowel or a specific pronunciation of i.
Language examples, transliteration systems, and linguistic papers using breve-marked vowels.
Pronunciation guides or annotated forms that distinguish short i from other i variants.
Content that teaches diacritics, vowel length, or phonetic spelling.
Romanization conventions that use the breve for short-vowel distinctions.
Correct encoding ensures assistive technologies interpret diacritics accurately.
Demonstrating Latin Extended-A characters and diacritic rendering in fonts.
💡 Best Practices
Do
- Use
&ibreve;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-A and diacritic marks
- Pick one entity style (hex, decimal, or named) per project
- Distinguish ĭ (breve) from í (acute), plain
i(U+0069), and dotlessı
Don’t
- Substitute plain
iwhen ĭ is required for correct notation - Confuse breve ĭ with acute í or caron ǐ
- Put CSS escape
\012Din HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render ĭ; named entity is most readable
ĭ ĭ &ibreve;For CSS stylesheets, use the escape in the content property
\012DUnicode U+012D — LATIN SMALL LETTER I WITH BREVE
Used in phonetic transcription, linguistics, and specialized typography
Previous: Lowercase I Acute (í) Next: Lowercase I Caron
❓ Frequently Asked Questions
&ibreve; (named), ĭ (hex), ĭ (decimal), or \012D in CSS content. The named entity &ibreve; is the most readable for HTML content.U+012D (LATIN SMALL LETTER I WITH BREVE). Latin Extended-A block. Hex 12D, decimal 301. The breve indicates a short vowel in phonetic and linguistic contexts.i (U+0069) followed by the combining breve (U+0306). Both forms are equivalent in Unicode, but the precomposed form is often simpler to use in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
