HTML Entity for Lowercase J (j)

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

What You'll Learn

How to display the lowercase letter j in HTML using entity methods and direct character input. The letter j is the tenth letter of the Latin alphabet (U+006A) and is part of the Basic Latin block. It appears in everyday text, programming documentation, and academic content. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.

This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &j; for this letter.

⚡ Quick Reference — Lowercase J Entity

Unicode U+006A

Basic Latin (ASCII)

Hex Code j

Hexadecimal reference

HTML Code j

Decimal reference

Direct Character j

Type directly (no named entity)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+006A
Hex code       j
HTML code      j
Named entity   (none — use j directly)
CSS code       \006A
Meaning        Latin small letter j
Related        U+004A = J (uppercase)
Block          Basic Latin (U+0000–U+007F)
1

Complete HTML Example

A simple example showing the lowercase letter j using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\006A";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x6a;</p>
<p>Symbol (decimal): &#106;</p>
<p>Symbol (direct): j</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase letter j (U+006A) is universally supported in all browsers and platforms as part of Basic Latin:

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

👀 Live Preview

See the lowercase letter j in common text contexts:

Large glyphj
Body textThe letter j appears in words like jump, enjoy, and project.
Programmingfor (j = 0; j < n; j++)
Alphabeth i j k l
Not the same asǰ (j with caron) or uppercase J (U+004A)
Numeric refs&#x6a; &#106; \006A

🧠 How It Works

1

Hexadecimal Code

&#x6a; uses the Unicode hexadecimal value 6A to display the letter. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#106; uses the decimal Unicode value 106 to display the same character. This is the ASCII/Unicode decimal for j.

HTML markup
3

Direct Character

Type j directly in HTML. There is no named entity like &j;; the character itself is the standard approach in body text.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: j. Unicode U+006A sits in Basic Latin. The uppercase form is U+004A (J). Do not confuse plain j with ǰ (j with caron). In normal text, typing j is preferred.

Use Cases

The lowercase letter j (or its entity forms) is commonly used in:

📝 Body text

Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.

📚 Academic content

Mathematical notation, indices, and variables like j in scientific and educational material.

💻 Programming docs

Variable names and loop counters (e.g. i, j, k) in code snippets and tutorials.

🌐 Internationalization

Words in English, Spanish, French, Dutch, and many other Latin-script languages.

📄 Abbreviations

Common in abbreviations such as JSON and JPEG in technical writing.

⚙ Programmatic HTML

When building HTML in code, using &#106; or &#x6a; ensures correct output regardless of encoding context.

🎨 CSS generated content

Using \006A in the CSS content property to insert j via pseudo-elements.

💡 Best Practices

Do

  • Type j directly in body content; use entities only when necessary
  • Serve pages as UTF-8 so Basic Latin characters render without entities
  • Use numeric references (&#x6a; or &#106;) when escaping is required
  • Use \006A in CSS content when generating the letter via pseudo-elements
  • Remember lowercase j is U+006A and uppercase J is U+004A when case matters

Don’t

  • Overuse numeric entities for j in normal readable text
  • Expect a named HTML entity like &j;—none exists for this letter
  • Confuse plain j (U+006A) with ǰ (j with caron, U+01F0)
  • Put CSS escape \006A in HTML text nodes
  • Mix entity styles randomly in one file without reason

Key Takeaways

1

Type j directly, or use hex/decimal references

&#x6a; &#106;
2

For CSS stylesheets, use the escape in the content property

\006A
3

Unicode U+006A — LATIN SMALL LETTER J

4

Tenth letter of the Latin alphabet (Basic Latin block)

❓ Frequently Asked Questions

Type j directly, or use &#x6a; (hex), &#106; (decimal), or \006A in CSS content. For most content, typing j is standard; use numeric or CSS entities when escaping or generating via CSS.
U+006A (LATIN SMALL LETTER J). Basic Latin block. Hex 6A, decimal 106. It is the tenth letter of the Latin alphabet and a standard character in virtually all Western scripts.
For normal text, typing j is preferred. Use numeric or CSS entities when generating HTML programmatically, escaping in attributes, using CSS ::before/::after content, or ensuring encoding in legacy systems.
No. Named HTML entities exist for a limited set of characters. The lowercase letter j has no named entity. Use the character directly or numeric references (&#x6a; or &#106;) or CSS \006A when needed.
HTML code (&#106; or &#x6a;) or the literal j is used in HTML content. The CSS entity (\006A) is used in CSS stylesheets, particularly in the content property of pseudo-elements. Both produce j but in different contexts.

Explore More HTML Entities!

Discover 1500+ HTML character references — 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