HTML Entity for Uppercase I Latin (ɪ)

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

What You'll Learn

How to display the uppercase i latin (ɪ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+026A (LATIN LETTER SMALL CAPITAL I)—an IPA phonetic symbol used as the capital form of i in phonetic notation. It sits in the IPA Extensions block.

Render it with ɪ, ɪ, or CSS escape \026A. There is no named HTML entity for this character. In IPA it represents the near-close near-front unrounded vowel (as in English “kit”).

⚡ Quick Reference — Uppercase I Latin Entity

Unicode U+026A

IPA Extensions

Hex Code ɪ

Hexadecimal reference

HTML Code ɪ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+026A
Hex code       ɪ
HTML code      ɪ
Named entity   (none)
CSS code       \026A
Meaning        Latin letter small capital I
IPA use        Near-close near-front unrounded vowel
Example        ship [ʃɪp]
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the uppercase i latin (ɪ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\026A";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x026A;</p>
<p>Symbol (decimal): &#618;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase i latin (ɪ) renders correctly in modern browsers when UTF-8 is used and the font supports IPA Extensions:

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

👀 Live Preview

See the uppercase i latin (ɪ) in phonetic and typographic contexts:

Large glyphɪ
IPA exampleship [ʃɪp]
IPA meaningNear-close near-front unrounded vowel (International Phonetic Alphabet)
Unicode nameLATIN LETTER SMALL CAPITAL I (used as IPA capital I)
Not the same asplain I (U+0049)  |  i (U+0069)  |  Ɩ (Latin Iota, U+0196)
Numeric refs&#x026A; &#618; \026A

🧠 How It Works

1

Hexadecimal Code

&#x026A; uses the Unicode hexadecimal value 026A to display the uppercase i latin. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#618; uses the decimal Unicode value 618 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ɪ. Unicode U+026A sits in IPA Extensions. There is no named HTML entity. Do not confuse with plain I (U+0049), i (U+0069), or Latin Iota Ɩ (U+0196).

Use Cases

The uppercase i latin (ɪ) is commonly used in:

🎤 Phonetic transcription

IPA notation, pronunciation guides, and linguistic research requiring the near-close near-front unrounded vowel.

📚 IPA notation

International Phonetic Alphabet documentation, textbooks, and academic papers with accurate vowel symbols.

📚 Linguistic content

Language research papers, documentation, and databases requiring proper IPA character representation.

📄 Academic papers

Scholarly publications and phonetic analysis documents discussing vowel systems.

📖 Language learning

Educational websites and apps that teach phonetic notation and pronunciation (e.g. kit, ship).

📖 Dictionary entries

Dictionary interfaces and pronunciation tools needing accurate phonetic glyphs.

⚙ Font testing

Character set demonstrations and Unicode showcases for IPA Extensions coverage.

💡 Best Practices

Do

  • Use &#618; or &#x026A; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ɪ directly in UTF-8 source
  • Use fonts that support IPA Extensions (U+0250–U+02AF), e.g. Doulos SIL or Charis SIL
  • Distinguish ɪ (IPA small capital I) from plain I (U+0049) and i (U+0069)
  • Pick one numeric style (hex or decimal) per project for consistency

Don’t

  • Assume a named entity exists—there is none for ɪ
  • Substitute plain I or i when ɪ is required in IPA text
  • Put CSS escape \026A in HTML text nodes
  • Use padded Unicode notation like U+0026A—the correct value is U+026A
  • Use \0026A in CSS—the correct escape is \026A

Key Takeaways

1

Three references render ɪ (no named entity)

&#x026A; &#618;
2

For CSS stylesheets, use the escape in the content property

\026A
3

Unicode U+026A — LATIN LETTER SMALL CAPITAL I

4

IPA Extensions; represents the near-close near-front unrounded vowel in phonetic notation

❓ Frequently Asked Questions

Use &#x026A; (hex), &#618; (decimal), or \026A in CSS content. There is no named HTML entity for this character.
U+026A (LATIN LETTER SMALL CAPITAL I). IPA Extensions block. Hex 026A, decimal 618. Used in IPA phonetic notation for the near-close near-front unrounded vowel.
In phonetic transcriptions, IPA notation, linguistic content, academic texts, language learning materials, dictionary entries, and any content requiring the IPA small capital I glyph.
HTML code (&#618; or &#x026A;) is used in HTML content. The CSS entity (\026A) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ɪ but in different contexts.
ɪ is a small capital I, visually distinct from regular uppercase I and lowercase i. In IPA it represents the near-close near-front unrounded vowel (as in English “kit”)—a specific phonetic sound, not the ordinary letter I. This distinction matters for accurate phonetic representation in linguistic studies.

Explore More HTML Entities!

Discover 1500+ HTML character references — extended Latin, phonetic 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