HTML Entity for Lowercase N (n)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+006E

What Is the Lowercase N Entity?

Lowercase n is the Basic Latin character at Unicode U+006E (LATIN SMALL LETTER N). You can type n directly in HTML, or write it with a numeric character reference when you need an explicit entity form.

Remember
Character     n
Unicode       U+006E
Hex entity    n
Decimal       n
CSS escape    \006E
Named entity  (none)

All of these produce the same glyph: n. Prefer typing n in normal page text; use entities for CSS content, generated markup, or when encoding must be explicit.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characternHTML text (default choice)
Hex entitynHTML markup
Decimal entitynHTML markup
CSS escape\006EStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Normal paragraphs, headings, labelsType n
Need an entity in HTML sourcen or n
Generated text via ::before / ::aftercontent: "\006E"
Looking for &n;Does not exist — use numeric form (do not confuse with ñ or  )
N with apostrophe (ʼn)Different character — see Related Topics

Live Preview

Lowercase n rendered in common UI contexts.

Inline text The letter n appears in words like name and number.
Large glyph n
Alphabet l m n o p
Math / code for (let n = 0; n < 10; n++)
With entities Hex: n | Decimal: n
Not the same ʼn (n apostrophe) · ñ (&ntilde;)

Complete HTML Example

One page that shows lowercase n with the hex entity, decimal entity, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

All four ways to produce n in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase N (n) in HTML</title>
  <style>
    #point::after {
      content: "\006E";
    }
  </style>
</head>
<body>
  <p>Lowercase N using Hex Code: &#x6e;</p>
  <p>Lowercase N using HTML Code: &#110;</p>
  <p id="point">Lowercase N using CSS Entity: </p>
  <p>Typed directly: n</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+006E → &#x6e; in HTML. The browser turns it into n.

2. Decimal: same code point as 110 → &#110;. Same result as hex.

3. CSS: use \006E in content (not an HTML entity). #point::after appends that n after the paragraph text.

4. Typed n: best for normal text. All four lines show the same letter.

Pitfalls & Tips

Common mistakes when working with the lowercase n entity.

Named?

No &n;

HTML5 does not define a named entity for ASCII letters. Use numeric forms. Do not confuse with &ntilde; (ñ) or &nbsp;.

CSS vs HTML

Do not mix escapes

\006E belongs in CSS. &#x6e; / &#110; belong in HTML.

Look-alikes

n vs ñ vs ʼn

Plain n is U+006E. Spanish ñ is &ntilde;. N with apostrophe ʼn is U+0149.

Default

Type n when you can

Entities are for encoding needs — not required for ordinary body text.

Semicolon

End references

Always finish with ; — write &#110;, not &#110.

Case

n vs N

Uppercase N is U+004E — a different code point from U+006E.

Browser Support

Lowercase n (U+006E) and its numeric entity forms (&#x6e;, &#110;, CSS \\006E) are supported in all mainstream browsers.

✓ Universal support

Lowercase N (n)

Type n, or encode with hex, decimal, or CSS escape — same glyph everywhere.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+006E / entities Full support

Bottom line: Use a typed n for normal text. Prefer &#x6e; or &#110; in HTML when encoding must be explicit, and \\006E only inside CSS content.

Key Takeaways

  • Unicode: lowercase n is U+006E (decimal 110).
  • HTML: use &#x6e; or &#110; when you need an entity.
  • CSS: use \006E inside content for generated text.
  • Default: type n directly — there is no &n; named entity.

One line: U+006E → type n, or encode as &#x6e; / &#110; / CSS \006E.

Frequently Asked Questions

Use &#x6e; (hex), &#110; (decimal), or the CSS escape \006E in the content property. All render the letter n. In most cases you can also type n directly.
U+006E (LATIN SMALL LETTER N). Hex 6E, decimal 110. It belongs to the Basic Latin (ASCII) block and is the fourteenth letter of the Latin alphabet.
No. ASCII letters like n do not have named HTML entities in HTML5. Use numeric references like &#110; or &#x6e; when you need an entity form.
Use entities when generating content in CSS, when you want explicit encoding, or when outputting into contexts where escaping is required. For normal body text, typing n directly is usually best.
HTML entities (&#110; or &#x6e;) go in markup. The CSS escape \006E is used in stylesheets (usually in the content property of ::before/::after). Both render n.
No. &n; is not a valid HTML5 named entity for the letter n. Type n or use &#110; / &#x6e;. Do not confuse with &ntilde; (ñ) or &nbsp; (non-breaking space).

Did you know?

Lowercase n is Unicode U+006E (decimal 110). HTML5 has no named entity for it — use &#x6e; or &#110; when you need an entity form. In math and code, n often stands for a count or index.

Next: Lowercase N Apostrophe

Learn the HTML entity for ʼn (n preceded by apostrophe) — next in this sequence.

Continue tutorial →

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