HTML Entity for Lowercase J Circumflex (ĵ)

What You'll Learn
How to display the lowercase j with circumflex (ĵ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0135 in the Latin Extended-A block and is best known as a letter in Esperanto, where the circumflex indicates the voiced palatal fricative sound.
Render it with ĵ, ĵ, ĵ, or CSS escape \135. The named entity ĵ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase J Circumflex Entity
U+0135Latin Extended-A
ĵHexadecimal reference
ĵDecimal reference
ĵMost readable option
Name Value
──────────── ──────────
Unicode U+0135
Hex code ĵ
HTML code ĵ
Named entity ĵ
CSS code \135
Meaning Latin small letter j with circumflex
Related U+0134 = Ĵ (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase j circumflex (ĵ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\135";
}
</style>
</head>
<body>
<p>Symbol (hex): ĵ</p>
<p>Symbol (decimal): ĵ</p>
<p>Symbol (named): ĵ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase j circumflex (ĵ) and the named entity ĵ are supported in modern browsers:
👀 Live Preview
See the lowercase j circumflex (ĵ) in Esperanto and linguistic contexts:
j (U+006A) or ǰ (j with caron)🧠 How It Works
Named Entity
ĵ is the standard named entity for ĵ—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
ĵ uses the Unicode hexadecimal value 135 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ĵ uses the decimal Unicode value 309 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\135 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ĵ. Unicode U+0135 sits in Latin Extended-A. It decomposes to j (U+006A) + combining circumflex (U+0302). Uppercase equivalent: U+0134 (Ĵ). Do not confuse with plain j or ǰ (j with caron).
Use Cases
The lowercase j circumflex (ĵ) is commonly used in:
ĵ is an official letter in Esperanto, representing the voiced palatal fricative sound.
Esperanto courses, dictionaries, and educational content teaching the letter ĵ.
Phonetic transcriptions and linguistic notation using the circumflex-accented j.
Websites and apps supporting Esperanto with proper encoding and character display.
Technical or reference documentation with Esperanto terms and character tables.
Correct Unicode ensures screen readers handle ĵ properly in Esperanto content.
Proper spelling helps search indexing for Esperanto-language content.
💡 Best Practices
Do
- Use
ĵin HTML when possible for readability - Serve pages as UTF-8; you can also type ĵ directly in UTF-8 source
- Set
lang="eo"on Esperanto content to aid pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish ĵ (circumflex) from plain
jand ǰ (caron)
Don’t
- Substitute plain
jwhen ĵ is required for correct Esperanto spelling - Confuse circumflex ĵ with caron ǰ or other accented j variants
- Put CSS escape
\135in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with extended Latin characters
Key Takeaways
Four references render ĵ; named entity is most readable
ĵ ĵ ĵFor CSS stylesheets, use the escape in the content property
\135Unicode U+0135 — LATIN SMALL LETTER J WITH CIRCUMFLEX
Essential for Esperanto, linguistic content, and internationalized web pages
Previous: Lowercase J Caron (ǰ) Next: Lowercase J Crossed Tail
❓ Frequently Asked Questions
ĵ (named), ĵ (hex), ĵ (decimal), or \135 in CSS content. The named entity ĵ is the most readable for HTML content.U+0135 (LATIN SMALL LETTER J WITH CIRCUMFLEX). Latin Extended-A block. Hex 135, decimal 309. Used notably in Esperanto.ĵ. It is part of the HTML5 standard and is supported in modern browsers. You can also use numeric references or type ĵ directly in UTF-8.ĵ or ĵ) or the named entity ĵ is used in HTML content. The CSS entity (\135) 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
