HTML Entity for Lowercase J Dashless (ȷ)

What You'll Learn
How to display the lowercase j dashless or dotless j (ȷ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0237 in the Latin Extended-B block—the letter j without the usual dot. It is commonly used in mathematical notation as the unit vector ȷ alongside ı (dotless i) and k, and in some linguistic and phonetic contexts.
Render it with ȷ, ȷ, or CSS escape \237. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase J Dashless Entity
U+0237Latin Extended-B
ȷHexadecimal reference
ȷDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0237
Hex code ȷ
HTML code ȷ
Named entity (none)
CSS code \237
Meaning Latin small letter dotless j
Also known as j dashless
Related U+0131 = ı (dotless i, ı)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase j dashless (ȷ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\237";
}
</style>
</head>
<body>
<p>Symbol (hex): ȷ</p>
<p>Symbol (decimal): ȷ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase j dashless (ȷ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase j dashless (ȷ) in mathematical and typographic contexts:
j (U+006A) or ı (dotless i)🧠 How It Works
Hexadecimal Code
ȷ uses the Unicode hexadecimal value 237 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȷ uses the decimal Unicode value 567 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\237 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+0237 sits in Latin Extended-B. Do not confuse with plain j (U+006A), dotless i ı (U+0131), or IPA ʝ (j crossed tail).
Use Cases
The lowercase j dashless (ȷ) is commonly used in:
Unit vector ȷ in mathematics and physics, with ı and k forming the standard basis.
Phonetic or linguistic systems that distinguish dotless j from regular j.
Design contexts that intentionally use j without a dot for aesthetic or legibility reasons.
Formulas, textbooks, and technical docs using unit-vector notation ı, ȷ, k.
Math and physics courses teaching vector notation and coordinate systems.
Correct Unicode ensures screen readers handle ȷ properly in technical content.
When generating math markup, using ȷ or ȷ ensures correct output.
💡 Best Practices
Do
- Use U+0237 (ȷ) for dotless j and U+006A for regular j when semantics matter
- Serve pages as UTF-8; you can also type ȷ directly in UTF-8 source
- Use fonts that support Latin Extended-B and math notation
- Pair with ı (
ı) for complete unit-vector sets - Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
jwhen ȷ is required for correct math notation - Confuse ȷ (dotless j) with ı (dotless i) or ʝ (IPA crossed tail)
- Expect a named HTML entity—none exists for this character
- Put CSS escape
\237in 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
\237Unicode U+0237 — LATIN SMALL LETTER DOTLESS J
Essential for unit-vector notation and mathematical typography
Previous: Lowercase J Crossed Tail (ʝ) Next: Lowercase J Middle Stroke
❓ Frequently Asked Questions
ȷ (hex), ȷ (decimal), or \237 in CSS content. There is no named HTML entity for ȷ.U+0237 (LATIN SMALL LETTER DOTLESS J). Latin Extended-B block. Hex 237, decimal 567. Used in mathematical notation and some linguistic contexts.j (U+006A) is the standard lowercase j. In mathematics, ȷ is often used as a unit vector with ı and k to avoid confusion with the imaginary unit i. They are distinct Unicode characters.Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, letters, and more.
8 people found this page helpful
