HTML Entity for Uppercase I Stroke (Ɨ)

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

What You'll Learn

How to display the uppercase I with stroke (Ɨ) in HTML using hexadecimal, decimal, and CSS escape methods. The horizontal stroke through the letter distinguishes it from plain I. It is U+0197 (LATIN CAPITAL LETTER I WITH STROKE) in the Latin Extended-B block.

Render it with Ɨ, Ɨ, or CSS escape \197. There is no named HTML entity for this character. The lowercase pair is ɨ (barred i, U+0268, IPA Extensions).

⚡ Quick Reference — Uppercase I Stroke Entity

Unicode U+0197

Latin Extended-B

Hex Code Ɨ

Hexadecimal reference

HTML Code Ɨ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0197
Hex code       Ɨ
HTML code      Ɨ
Named entity   (none)
CSS code       \197
Meaning        Latin capital letter I with stroke
Related        U+0268 = ɨ (lowercase barred i)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase I stroke (Ɨ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The uppercase I stroke (Ɨ) renders correctly in modern browsers when UTF-8 is used, though font support for Latin Extended-B varies:

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

👀 Live Preview

See the uppercase I stroke (Ɨ) and how it differs from similar characters:

Large glyphƗ
Case pairƗ (uppercase) / ɨ (lowercase barred i)
Not plain II (U+0049) has no stroke
Not dotless iƗ ≠ ı (dotless i, U+0131)
Numeric refs&#x197; &#407; \197

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\197 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+0197 sits in Latin Extended-B. Lowercase equivalent: U+0268 (ɨ, barred i). There is no named HTML entity. Do not confuse with plain I (U+0049) or ı (dotless i).

Use Cases

The uppercase I stroke (Ɨ) is commonly used in:

🔤 Linguistics

Orthographies and linguistic documentation requiring capital I with stroke.

📝 Phonetic notation

Transcriptions and guides paired with lowercase barred i (ɨ).

🎨 Typography

Font design, decorative text, and distinctive character styling.

📄 Academic publishing

Scholarly papers referencing specialized Latin letter forms.

🌐 Internationalization

Websites and apps requiring accurate Latin Extended-B encoding.

🔍 Character reference

Documentation, character maps, and encoding tutorials for U+0197.

⚙ CSS content

Pseudo-elements using \197 to inject the glyph dynamically.

💡 Best Practices

Do

  • Use &#407; or &#x197; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type Ɨ directly in UTF-8 source
  • Distinguish Ɨ from plain I, ɨ (lowercase), and ı (dotless i)
  • Use fonts that support Latin Extended-B characters
  • Link to the lowercase pair ɨ (U+0268) when documenting case forms

Don’t

  • Substitute plain I (U+0049) when Ɨ is required
  • Confuse Ɨ (uppercase stroke) with ɨ (lowercase barred i) in case-sensitive text
  • Put CSS escape \197 in HTML text nodes
  • Use padded Unicode notation like U+00197—the correct value is U+0197
  • Use \00197 in CSS—the correct escape is \197

Key Takeaways

1

Three references render Ɨ (no named entity)

&#x197; &#407;
2

For CSS stylesheets, use the escape in the content property

\197
3

Unicode U+0197 — LATIN CAPITAL LETTER I WITH STROKE

4

Lowercase pair is U+0268 (ɨ, barred i, IPA Extensions)

❓ Frequently Asked Questions

Use &#x197; (hex), &#407; (decimal), or \197 in CSS content. There is no named HTML entity for U+0197.
U+0197 (LATIN CAPITAL LETTER I WITH STROKE). Latin Extended-B block. Hex 197, decimal 407. Lowercase pair: U+0268 (ɨ, barred i).
In orthographies, linguistic and phonetic content, typography projects, academic texts, and internationalized web content requiring the capital I with stroke.
HTML code (&#407; or &#x197;) is used in HTML content. The CSS entity (\197) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ɨ but in different contexts.
No. U+0197 has no named HTML entity. Use &#407; or &#x197; in HTML, or \197 in CSS. Do not confuse with plain I (U+0049) or lowercase barred i (U+0268, ɨ).

Explore More HTML Entities!

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