HTML Entity for Lowercase J Crossed Tail (ʝ)

What You'll Learn
How to display the lowercase j with crossed tail (ʝ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is part of the IPA Extensions block (U+029D) and represents the voiced palatal fricative in the International Phonetic Alphabet (IPA). It is used in phonetic and linguistic notation to denote a specific speech sound.
Render it with ʝ, ʝ, or CSS escape \29D. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase J Crossed Tail Entity
U+029DIPA Extensions
ʝHexadecimal reference
ʝDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+029D
Hex code ʝ
HTML code ʝ
Named entity (none)
CSS code \29D
Meaning Latin small letter j with crossed-tail
IPA Voiced palatal fricative
Related U+006A = j (plain lowercase)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase j crossed tail (ʝ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\29D";
}
</style>
</head>
<body>
<p>Symbol (hex): ʝ</p>
<p>Symbol (decimal): ʝ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase j crossed tail (ʝ) is supported in modern browsers when the font includes IPA Extensions glyphs:
👀 Live Preview
See the lowercase j crossed tail (ʝ) in IPA and linguistic contexts:
j (U+006A), ĵ (ĵ), or ǰ (j caron)🧠 How It Works
Hexadecimal Code
ʝ uses the Unicode hexadecimal value 29D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʝ uses the decimal Unicode value 669 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\29D 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+029D sits in IPA Extensions and denotes the voiced palatal fricative in IPA. Do not confuse with plain j, Esperanto ĵ (ĵ), or ǰ (j with caron).
Use Cases
The lowercase j crossed tail (ʝ) is commonly used in:
Represents the voiced palatal fricative in International Phonetic Alphabet notation.
Academic papers, textbooks, and resources on phonetics and phonology.
Pronunciation guides and reference works with IPA transcriptions.
Apps and educational content teaching or displaying IPA symbols.
Speech pathology, audiology, and linguistic research using standard IPA.
Correct Unicode ensures screen readers handle ʝ properly in phonetic content.
IPA Extensions characters in linguistic fonts and design systems.
💡 Best Practices
Do
- Use U+029D (ʝ) as the precomposed IPA symbol for consistent display
- Serve pages as UTF-8; you can also type ʝ directly in UTF-8 source
- Use fonts that support IPA Extensions (U+0250–U+02AF)
- Pick one entity style (hex or decimal) per project for consistency
- Distinguish ʝ from plain
j, ĵ, and other j variants
Don’t
- Substitute plain
jwhen ʝ is required for correct IPA notation - Expect a named HTML entity—none exists for this character
- Confuse ʝ (IPA crossed tail) with ĵ (Esperanto circumflex)
- Put CSS escape
\29Din HTML text nodes - Assume all fonts render IPA Extensions glyphs identically
Key Takeaways
Three references render ʝ; no named entity exists
ʝ ʝFor CSS stylesheets, use the escape in the content property
\29DUnicode U+029D — LATIN SMALL LETTER J WITH CROSSED-TAIL
Essential for IPA transcription, linguistics, and pronunciation guides
Previous: Lowercase J Circumflex (ĵ) Next: Lowercase J Dashless
❓ Frequently Asked Questions
ʝ (hex), ʝ (decimal), or \29D in CSS content. There is no named HTML entity for ʝ.U+029D (LATIN SMALL LETTER J WITH CROSSED-TAIL). IPA Extensions block. Hex 29D, decimal 669. Represents the voiced palatal fricative in IPA.ʝ or ʝ) is used in HTML content. The CSS entity (\29D) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ʝ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — IPA symbols, letters, and more.
8 people found this page helpful
