HTML Entity for Uppercase I Breve (Ĭ)

What You'll Learn
How to display the uppercase I with breve (Ĭ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+012C in the Latin Extended-A block and marks a short vowel in phonetic transcription and linguistic notation.
Render it with Ĭ, Ĭ, or CSS escape \012C. There is no named HTML entity. In UTF-8 you can also type Ĭ directly in source.
⚡ Quick Reference — Uppercase I Breve Entity
U+012CLatin Extended-A
ĬHexadecimal reference
ĬDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+012C
Hex code Ĭ
HTML code Ĭ
Named entity (none)
CSS code \012C
Meaning Latin capital letter I with breve
Related U+012D = ĭ (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
This example demonstrates the uppercase I breve (Ĭ) 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: "\012C";
}
</style>
</head>
<body>
<p>Symbol (hex): Ĭ</p>
<p>Symbol (decimal): Ĭ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase I breve (Ĭ) numeric references and CSS escape are supported in modern browsers:
👀 Live Preview
See the uppercase I breve (Ĭ) in linguistic and content contexts:
🧠 How It Works
Hexadecimal Code
Ĭ uses the Unicode hexadecimal value 12C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ĭ uses the decimal Unicode value 300 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\012C 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+012C sits in Latin Extended-A. Lowercase equivalent: U+012D (ĭ). No named HTML entity—use numeric codes in markup. Do not confuse with plain I (U+0049), acute Í (Í), or caron Ǐ (U+01CF).
Use Cases
The uppercase I breve (Ĭ) is commonly used in:
IPA-style notation and pronunciation guides marking a short vowel with breve.
Scholarly papers, research publications, and language atlases using specialized diacritics.
Dictionaries, transliteration guides, and linguistic reference materials.
Courses and textbooks explaining breve diacritics on vowels.
Font design, character set documentation, and typographic projects with extended Latin.
Content requiring correct rendering of Latin Extended-A characters.
Unicode guides, encoding documentation, and technical references for special characters.
💡 Best Practices
Do
- Use
ĬorĬfor readable HTML markup - Serve pages as UTF-8; you can also type Ĭ directly in UTF-8 source
- Use fonts that support Latin Extended-A (U+0100–U+017F)
- Distinguish Ĭ (breve) from Í (acute) and Ǐ (caron)
- Link to the lowercase pair ĭ (U+012D) when documenting both forms
Don’t
- Substitute plain
Iwhen Ĭ is required for correct notation - Expect a named entity—none exists for U+012C
- Confuse breve Ĭ with acute Í or caron Ǐ
- Put CSS escape
\012Cin HTML text nodes - Use padded Unicode notation like U+0012C—the correct value is
U+012C - Use
\0012Cin CSS—the correct escape is\012C
Key Takeaways
Two HTML numeric references plus CSS render Ĭ
Ĭ ĬFor CSS stylesheets, use the escape in the content property
\012CUnicode U+012C — LATIN CAPITAL LETTER I WITH BREVE
Used in phonetic transcription, linguistics, and academic content
Three methods, no named HTML entity
❓ Frequently Asked Questions
Ĭ (hex), Ĭ (decimal), or \012C in CSS content. There is no named entity.U+012C (LATIN CAPITAL LETTER I WITH BREVE). Latin Extended-A block. Hex 12C, decimal 300. Used in phonetic transcription and linguistic notation.Ĭ or Ĭ) go in HTML content. The CSS escape (\012C) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ĭ but in different contexts.Ĭ or Ĭ in markup, or \012C in CSS. Related breve 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
