HTML Entity for Uppercase I Tilde (Ĩ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0128

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

Unicode U+0128

Latin Extended-A

Hex Code Ĩ

Hexadecimal reference

HTML Code Ĩ

Decimal reference

Named Entity Ĩ

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\128";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x128;</p>
<p>Symbol (decimal): &#296;</p>
<p>Symbol (named): &Itilde;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase I tilde (Ĩ) and the named entity &Itilde; are widely supported in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase I tilde (Ĩ) in language and content contexts:

Large glyphĨ
KikuyuGĨkũyũ — capital letter at the start of the language name
Case pairĨ (uppercase) / ĩ (lowercase, &itilde;)
Named entity&Itilde; renders as Ĩ
Not the same asI (plain)  |  Ñ (N tilde)  |  Ã (A tilde)
Numeric refs&#x128; &#296; &Itilde; \128

🧠 How It Works

1

Named Entity

&Itilde; is the standard named entity for Ĩ—readable in source HTML and part of the HTML5 entity set.

HTML markup
2

Hexadecimal Code

&#x128; uses the Unicode hexadecimal value 128 to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#296; uses the decimal Unicode value 296 to display the same character. A common method for Latin Extended-A characters.

HTML markup
4

CSS Entity

\128 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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 (&itilde;). Do not confuse with Ñ (N with tilde).

Use Cases

The uppercase I tilde (Ĩ) is commonly used in:

🇰🇪 Kikuyu

Capital Ĩ in GĨkũyũ and other Kikuyu words and proper nouns at sentence start.

🇵🇾 Guarani

Guarani language content where nasalized vowels include capital I with tilde.

🔤 Language learning

Textbooks, dictionaries, and resources teaching Kikuyu, Guarani, and other tilde-using languages.

📝 Names & forms

Correctly capturing capitalized Kikuyu and Guarani names in inputs and databases.

🗣 Linguistics

Transliteration systems and notation using the tilde for nasalization or other features.

🌐 Internationalization

Multilingual websites serving audiences that require proper tilde diacritics on capital I.

♿ Accessibility

Accurate diacritics improve clarity for readers and assistive technologies.

💡 Best Practices

Do

  • Use &Itilde; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ĩ directly in UTF-8 source
  • Set lang attributes (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 I when Ĩ is required for correct spelling
  • Confuse Ĩ (i tilde) with Ñ (N tilde) or ĩ (lowercase)
  • Put CSS escape \128 in HTML text nodes
  • Use padded Unicode notation like U+00128—the correct value is U+0128
  • Use \00128 in CSS—the correct escape is \128

Key Takeaways

1

Four references render Ĩ; named entity is most readable

&#x128; &#296; &Itilde;
2

For CSS stylesheets, use the escape in the content property

\128
3

Unicode U+0128 — LATIN CAPITAL LETTER I WITH TILDE

4

Essential for Kikuyu, Guarani, and i18n content with tilde accents

❓ Frequently Asked Questions

Use &Itilde; (named), &#x128; (hex), &#296; (decimal), or \128 in CSS content. The named entity &Itilde; 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.
When writing Kikuyu (Gĩkũyũ) text, Guarani language content, multilingual websites, language learning materials, and internationalized content requiring the tilde on capital I.
HTML code (&#296; or &#x128;) or the named entity &Itilde; 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.
Yes. The named HTML entity is &Itilde;. It is part of the standard HTML5 entity set and is well supported in modern browsers. You can also use numeric codes (&#296; or &#x128;) if preferred.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful