HTML Entity for Uppercase I Tilde (Ĩ)

What You'll Learn
How to display the uppercase I with tilde (Ĩ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The tilde (wave accent) marks nasalization or other vowel features and appears in Kikuyu (Gĩkũyũ), Guarani, and other languages. It is U+0128 in the Latin Extended-A block.
Render it with Ĩ, Ĩ, Ĩ, or CSS escape \128. The named entity Ĩ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase I Tilde Entity
U+0128Latin Extended-A
ĨHexadecimal reference
ĨDecimal reference
ĨMost readable option
Name Value
──────────── ──────────
Unicode U+0128
Hex code Ĩ
HTML code Ĩ
Named entity Ĩ
CSS code \128
Meaning Latin capital letter I with tilde
Related U+0129 = ĩ (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase I tilde (Ĩ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\128";
}
</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 tilde (Ĩ) and the named entity Ĩ are widely supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase I tilde (Ĩ) in language 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 128 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ĩ uses the decimal Unicode value 296 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\128 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+0128 sits in Latin Extended-A. It decomposes to I (U+0049) + combining tilde (U+0303). Lowercase equivalent: U+0129 (ĩ). Do not confuse with Ñ (N with tilde).
Use Cases
The uppercase I tilde (Ĩ) is commonly used in:
Capital Ĩ in GĨkũyũ and other Kikuyu words and proper nouns at sentence start.
Guarani language content where nasalized vowels include capital I with tilde.
Textbooks, dictionaries, and resources teaching Kikuyu, Guarani, and other tilde-using languages.
Correctly capturing capitalized Kikuyu and Guarani names in inputs and databases.
Transliteration systems and notation using the tilde for nasalization or other features.
Multilingual websites serving audiences that require proper tilde diacritics on capital I.
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
langattributes (e.g.lang="ki") for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish Ĩ (i tilde) from Ñ (N tilde) and plain
I
Don’t
- Substitute plain
Iwhen Ĩ is required for correct spelling - Confuse Ĩ (i tilde) with Ñ (N tilde) or ĩ (lowercase)
- Put CSS escape
\128in HTML text nodes - Use padded Unicode notation like U+00128—the correct value is
U+0128 - Use
\00128in CSS—the correct escape is\128
Key Takeaways
Four references render Ĩ; named entity is most readable
Ĩ Ĩ ĨFor CSS stylesheets, use the escape in the content property
\128Unicode U+0128 — LATIN CAPITAL LETTER I WITH TILDE
Essential for Kikuyu, Guarani, and i18n content with tilde accents
Previous: Uppercase I Stroke (Ɨ) Next: Uppercase I Umlaut
❓ Frequently Asked Questions
Ĩ (named), Ĩ (hex), Ĩ (decimal), or \128 in CSS content. The named entity Ĩ is the most readable for HTML content.U+0128 (LATIN CAPITAL LETTER I WITH TILDE). Latin Extended-A block. Hex 128, decimal 296. Used in Kikuyu, Guarani, and other languages with tilde-marked vowels.Ĩ or Ĩ) or the named entity Ĩ is used in HTML content. The CSS entity (\128) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ĩ but in different contexts.Ĩ. It is part of the standard HTML5 entity set and is well supported in modern browsers. You can also use numeric codes (Ĩ or Ĩ) if preferred.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
