HTML Entity for Uppercase I Ogonek (Į)

What You'll Learn
How to display the uppercase I with ogonek (Į) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The ogonek (hook) is a distinct letter in the Lithuanian alphabet. It is U+012E in the Latin Extended-A block.
Render it with Į, Į, Į, or CSS escape \12E. The named entity Į is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase I Ogonek Entity
U+012ELatin Extended-A
ĮHexadecimal reference
ĮDecimal reference
ĮMost readable option
Name Value
──────────── ──────────
Unicode U+012E
Hex code Į
HTML code Į
Named entity Į
CSS code \12E
Meaning Latin capital letter I with ogonek
Related U+012F = į (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase I ogonek (Į) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\12E";
}
</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 uppercase I ogonek (Į) and the named entity Į are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase I ogonek (Į) in Lithuanian and content contexts:
🧠 How It Works
Named Entity
Į is the standard named entity for Į—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
Į uses the Unicode hexadecimal value 12E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Į uses the decimal Unicode value 302 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\12E 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+012E sits in Latin Extended-A. Lowercase equivalent: U+012F (į). Do not confuse with Ę (E ogonek) or plain I (U+0049).
Use Cases
The uppercase I ogonek (Į) is commonly used in:
A distinct letter in the Lithuanian alphabet, used in all-caps headings and proper nouns.
Lessons, dictionaries, and resources for Lithuanian and Baltic languages.
Correctly capturing Lithuanian names and place names in uppercase text and forms.
Transliteration systems and linguistic notation using the ogonek diacritic.
Correct spelling with Į is essential for Lithuanian locales and multilingual content.
Articles, blogs, and educational content in Lithuanian or Baltic studies.
Accurate diacritics improve clarity for readers and assistive technologies.
💡 Best Practices
Do
- Use
Įin HTML when possible for readability - Serve pages as UTF-8; you can also type Į directly in UTF-8 source
- Set
lang="lt"for Lithuanian content to aid pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish Į (I ogonek) from Ę (E ogonek) and plain
I
Don’t
- Substitute plain
Iwhen Į is required for correct Lithuanian spelling - Confuse Į (I ogonek) with Ę (E ogonek) or other accented I forms
- Put CSS escape
\12Ein HTML text nodes - Use padded Unicode notation like U+0012E—the correct value is
U+012E - Use
\0012Ein CSS—the correct escape is\12E
Key Takeaways
Four references render Į; named entity is most readable
Į Į ĮFor CSS stylesheets, use the escape in the content property
\12EUnicode U+012E — LATIN CAPITAL LETTER I WITH OGONEK
Essential for Lithuanian text and i18n content
Previous: Uppercase I Macron (Ī) Next: Uppercase I Script Capital
❓ Frequently Asked Questions
Į (named), Į (hex), Į (decimal), or \12E in CSS content. The named entity Į is the most readable for HTML content.U+012E (LATIN CAPITAL LETTER I WITH OGONEK). Latin Extended-A block. Hex 12E, decimal 302. Used in Lithuanian and other languages with the ogonek diacritic.Į or Į) or the named entity Į is used in HTML content. The CSS entity (\12E) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Į but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
