HTML Entity for Uppercase J Middle Stroke (Ɉ)

What You'll Learn
How to display the uppercase J with middle stroke (Ɉ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0248 in the Latin Extended-B block—the capital letter J with a horizontal stroke through the middle. It is the uppercase pair of ɉ and appears in phonetic and linguistic notation, and in some orthographies and transliteration systems.
Render it with Ɉ, Ɉ, or CSS escape \248. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase J Middle Stroke Entity
U+0248Latin Extended-B
ɈHexadecimal reference
ɈDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0248
Hex code Ɉ
HTML code Ɉ
Named entity (none)
CSS code \248
Meaning Latin capital letter J with stroke
Also known as J middle stroke
Related U+0249 = ɉ (lowercase pair)
U+004A = J (plain uppercase J)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase J with middle stroke (Ɉ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\248";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɉ</p>
<p>Symbol (decimal): Ɉ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase J with middle stroke (Ɉ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the uppercase J with middle stroke (Ɉ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
Ɉ uses the Unicode hexadecimal value 248 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɉ uses the decimal Unicode value 584 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\248 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+0248 sits in Latin Extended-B. Do not confuse with plain J (U+004A), lowercase pair ɉ (U+0249), or Ĵ (J circumflex).
Use Cases
The uppercase J with middle stroke (Ɉ) is commonly used in:
Capitalized phonetic notation where the stroke distinguishes Ɉ from plain J.
Academic papers, textbooks, and resources on phonetics and phonology.
Pronunciation guides and reference works using extended Latin characters.
Educational apps and content teaching phonetic symbols and extended letters.
Font design and typographic work that includes the capital J with stroke.
Correct Unicode ensures screen readers handle Ɉ properly in phonetic content.
When generating linguistic markup, using Ɉ or Ɉ ensures correct output.
💡 Best Practices
Do
- Use U+0248 (Ɉ) when the stroked capital J is required; use U+004A for plain J
- Serve pages as UTF-8; you can also type Ɉ directly in UTF-8 source
- Link to the lowercase pair ɉ (U+0249) when documenting case forms
- Use fonts that support Latin Extended-B and phonetic notation
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
Jwhen Ɉ is required for correct phonetic notation - Confuse Ɉ (J with stroke) with ɉ (lowercase) or Ĵ (J circumflex)
- Expect a named HTML entity—none exists for this character
- Use
U+00248or CSS\00248—the correct code isU+0248and\248 - Put CSS escape
\248in HTML text nodes
Key Takeaways
Three references render Ɉ; no named entity exists
Ɉ ɈFor CSS stylesheets, use the escape in the content property
\248Unicode U+0248 — LATIN CAPITAL LETTER J WITH STROKE
Lowercase pair is U+0249 (ɉ, j with stroke)
Previous: R with Fishhook (ɾ) Next: Uppercase J Reverse Fishhook
❓ Frequently Asked Questions
Ɉ (hex), Ɉ (decimal), or \248 in CSS content. There is no named HTML entity for Ɉ.U+0248 (LATIN CAPITAL LETTER J WITH STROKE). Latin Extended-B block. Hex 248, decimal 584. Used in phonetic and linguistic notation.J (U+004A) is the standard uppercase J. The stroke distinguishes this character in phonetic and orthographic systems. They are distinct Unicode characters.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, phonetic letters, and more.
8 people found this page helpful
