HTML Entity for Lowercase J Circumflex (ĵ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0135

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

Unicode U+0135

Latin Extended-A

Hex Code ĵ

Hexadecimal reference

HTML Code ĵ

Decimal reference

Named Entity ĵ

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\135";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x135;</p>
<p>Symbol (decimal): &#309;</p>
<p>Symbol (named): &jcirc;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase j circumflex (ĵ) and the named entity &jcirc; are supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase j circumflex (ĵ) in Esperanto and linguistic contexts:

Large glyphĵ
Esperantoĵurno (day), aĵo (thing), paĵo (page)
Uppercase pairĴ (U+0134) / ĵ (U+0135)
Named entity&jcirc; renders as ĵ
Not the same asplain j (U+006A) or ǰ (j with caron)
Numeric refs&#x135; &#309; &jcirc; \135

🧠 How It Works

1

Named Entity

&jcirc; is the standard named entity for ĵ—readable in source HTML and part of the HTML5 entity set.

HTML markup
2

Hexadecimal Code

&#x135; uses the Unicode hexadecimal value 135 to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#309; uses the decimal Unicode value 309 to display the same character. A common method for Latin Extended-A characters.

HTML markup
4

CSS Entity

\135 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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 (&Jcirc;). Do not confuse with plain j or ǰ (j with caron).

Use Cases

The lowercase j circumflex (ĵ) is commonly used in:

🌐 Esperanto

ĵ is an official letter in Esperanto, representing the voiced palatal fricative sound.

📚 Language learning

Esperanto courses, dictionaries, and educational content teaching the letter ĵ.

🔤 Linguistics

Phonetic transcriptions and linguistic notation using the circumflex-accented j.

🌐 Internationalization

Websites and apps supporting Esperanto with proper encoding and character display.

📄 Documentation

Technical or reference documentation with Esperanto terms and character tables.

♿ Accessibility

Correct Unicode ensures screen readers handle ĵ properly in Esperanto content.

🔍 Search & SEO

Proper spelling helps search indexing for Esperanto-language content.

💡 Best Practices

Do

  • Use &jcirc; 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 j and ǰ (caron)

Don’t

  • Substitute plain j when ĵ is required for correct Esperanto spelling
  • Confuse circumflex ĵ with caron ǰ or other accented j variants
  • Put CSS escape \135 in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Omit UTF-8 encoding on pages with extended Latin characters

Key Takeaways

1

Four references render ĵ; named entity is most readable

&#x135; &#309; &jcirc;
2

For CSS stylesheets, use the escape in the content property

\135
3

Unicode U+0135 — LATIN SMALL LETTER J WITH CIRCUMFLEX

4

Essential for Esperanto, linguistic content, and internationalized web pages

❓ Frequently Asked Questions

Use &jcirc; (named), &#x135; (hex), &#309; (decimal), or \135 in CSS content. The named entity &jcirc; 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.
When writing Esperanto text, linguistic or phonetic content, educational material for Esperanto, multilingual sites that support ĵ, and any content requiring the circumflex-accented j.
Yes. The named HTML entity is &jcirc;. 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.
HTML code (&#309; or &#x135;) or the named entity &jcirc; 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful