HTML Entity for Uppercase I Stroke (Ɨ)

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
U+0197Latin Extended-B
ƗHexadecimal reference
ƗDecimal reference
—No named entity
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)Complete HTML Example
A simple example showing the uppercase I stroke (Ɨ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\197";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɨ</p>
<p>Symbol (decimal): Ɨ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase I stroke (Ɨ) renders correctly in modern browsers when UTF-8 is used, though font support for Latin Extended-B varies:
👀 Live Preview
See the uppercase I stroke (Ɨ) and how it differs from similar characters:
🧠 How It Works
Hexadecimal Code
Ɨ uses the Unicode hexadecimal value 197 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɨ uses the decimal Unicode value 407 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\197 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Orthographies and linguistic documentation requiring capital I with stroke.
Transcriptions and guides paired with lowercase barred i (ɨ).
Font design, decorative text, and distinctive character styling.
Scholarly papers referencing specialized Latin letter forms.
Websites and apps requiring accurate Latin Extended-B encoding.
Documentation, character maps, and encoding tutorials for U+0197.
Pseudo-elements using \197 to inject the glyph dynamically.
💡 Best Practices
Do
- Use
ƗorƗ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
\197in HTML text nodes - Use padded Unicode notation like U+00197—the correct value is
U+0197 - Use
\00197in CSS—the correct escape is\197
Key Takeaways
Three references render Ɨ (no named entity)
Ɨ ƗFor CSS stylesheets, use the escape in the content property
\197Unicode U+0197 — LATIN CAPITAL LETTER I WITH STROKE
Lowercase pair is U+0268 (ɨ, barred i, IPA Extensions)
Previous: Uppercase I Script Capital (ℐ) Next: Uppercase I Tilde
❓ Frequently Asked Questions
Ɨ (hex), Ɨ (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).Ɨ or Ɨ) 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.Ɨ or Ɨ 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.
8 people found this page helpful
