HTML Entity for Lowercase J Caron (ǰ)

What You'll Learn
How to display the lowercase j with caron (ǰ) in HTML using hexadecimal, decimal, and CSS escape methods. The caron (háček) is a diacritic used in Slavic linguistics, Pinyin transliteration, Czech and Slovak orthography, and other language contexts. It is U+01F0 in the Latin Extended-B block.
Render it with ǰ, ǰ, or CSS escape \01F0. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase J Caron Entity
U+01F0Latin Extended-B
ǰHexadecimal reference
ǰDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01F0
Hex code ǰ
HTML code ǰ
Named entity (none)
CSS code \01F0
Meaning Latin small letter j with caron
Related U+006A = j (plain lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase j caron (ǰ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01F0";
}
</style>
</head>
<body>
<p>Symbol (hex): ǰ</p>
<p>Symbol (decimal): ǰ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase j caron (ǰ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase j caron (ǰ) in linguistic and transliteration contexts:
j (U+006A) or ǐ (i with caron, &icaron;)🧠 How It Works
Hexadecimal Code
ǰ uses the Unicode hexadecimal value 1F0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǰ uses the decimal Unicode value 496 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01F0 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+01F0 sits in Latin Extended-B. Prefer the precomposed character over j + combining caron (U+030C) for better compatibility. Do not confuse with plain j (U+006A) or ǐ (i with caron).
Use Cases
The lowercase j caron (ǰ) is commonly used in:
Phonetic notation where ǰ represents specific sounds in Slavic language studies.
Romanization systems for Chinese and other languages using j with caron.
Orthography and historical spelling where the caron (háček) modifies j.
Linguistic papers, dictionaries, and language-learning resources with accurate diacritics.
Correctly displaying names, place names, and technical terms in multilingual content.
Using U+01F0 ensures screen readers interpret ǰ as one character, not j plus a mark.
Latin Extended-B characters and diacritic rendering in fonts and design systems.
💡 Best Practices
Do
- Use the precomposed character U+01F0 rather than j + combining caron when possible
- Serve pages as UTF-8; you can also type ǰ directly in UTF-8 source
- Use fonts that support Latin Extended-B characters
- Pick one entity style (hex or decimal) per project for consistency
- Distinguish ǰ from plain
jand from ǐ (i with caron)
Don’t
- Substitute plain
jwhen ǰ is required for correct spelling or notation - Expect a named HTML entity—none exists for this character
- Confuse ǰ (j caron) with ǐ (i caron,
&icaron;) - Put CSS escape
\01F0in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
Key Takeaways
Three references render ǰ; no named entity exists
ǰ ǰFor CSS stylesheets, use the escape in the content property
\01F0Unicode U+01F0 — LATIN SMALL LETTER J WITH CARON
Essential for Slavic linguistics, Pinyin, and transliteration content
Previous: Lowercase J (j) Next: Lowercase J Circumflex (ĵ)
❓ Frequently Asked Questions
ǰ (hex), ǰ (decimal), or \01F0 in CSS content. There is no named HTML entity for ǰ.U+01F0 (LATIN SMALL LETTER J WITH CARON). Latin Extended-B block. Hex 1F0, decimal 496. Used in Slavic linguistics, Pinyin, and transliteration systems.ǰ or ǰ) is used in HTML content. The CSS entity (\01F0) 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 — accented letters, symbols, and more.
8 people found this page helpful
