HTML Entity for Uppercase J Circumflex (Ĵ)

What You'll Learn
How to display the uppercase J with circumflex (Ĵ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0134 in the Latin Extended-A block and is the capital form of the Esperanto letter ĵ, where the circumflex marks the voiced palatal fricative sound.
Render it with Ĵ, Ĵ, Ĵ, or CSS escape \134. The named entity Ĵ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase J Circumflex Entity
U+0134Latin Extended-A
ĴHexadecimal reference
ĴDecimal reference
ĴMost readable option
Name Value
──────────── ──────────
Unicode U+0134
Hex code Ĵ
HTML code Ĵ
Named entity Ĵ
CSS code \134
Meaning Latin capital letter J with circumflex
Related U+0135 = ĵ (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase J circumflex (Ĵ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\134";
}
</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 uppercase J circumflex (Ĵ) and the named entity Ĵ are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase J circumflex (Ĵ) in Esperanto and linguistic contexts:
🧠 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 134 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ĵ uses the decimal Unicode value 308 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\134 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+0134 sits in Latin Extended-A. It decomposes to J (U+004A) + combining circumflex (U+0302). Lowercase equivalent: U+0135 (ĵ). Do not confuse with plain J or ǰ (j with caron).
Use Cases
The uppercase J circumflex (Ĵ) is commonly used in:
Capital Ĵ at the start of sentences and in titles (e.g. Ĵurno) in Esperanto text.
Esperanto courses, dictionaries, and educational content teaching the letter pair Ĵ/ĵ.
Phonetic transcriptions and linguistic notation using the circumflex-accented capital J.
Websites and apps supporting Esperanto with proper encoding and character display.
Technical or reference documentation with Esperanto terms and character tables.
Correct Unicode with lang="eo" helps screen readers handle Ĵ 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
\134in HTML text nodes - Use padded Unicode notation like U+00134—the correct value is
U+0134 - Use
\00134in CSS—the correct escape is\134
Key Takeaways
Four references render Ĵ; named entity is most readable
Ĵ Ĵ ĴFor CSS stylesheets, use the escape in the content property
\134Unicode U+0134 — LATIN CAPITAL LETTER J WITH CIRCUMFLEX
Essential for Esperanto, linguistic content, and internationalized web pages
Previous: Uppercase J (J) Next: Uppercase J Fishhook
❓ Frequently Asked Questions
Ĵ (named), Ĵ (hex), Ĵ (decimal), or \134 in CSS content. The named entity Ĵ is the most readable for HTML content.U+0134 (LATIN CAPITAL LETTER J WITH CIRCUMFLEX). Latin Extended-A block. Hex 134, decimal 308. 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 (\134) 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
