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.
Reference
Quick Reference
One table for every form you will actually use.
Form
Code
Where it goes
Direct character
n
HTML text (default choice)
Hex entity
n
HTML markup
Decimal entity
n
HTML markup
CSS escape
\006E
Stylesheet content
Named entity
—
Not defined in HTML5
When to Use Which
Situation
Use
Normal paragraphs, headings, labels
Type n
Need an entity in HTML source
n or n
Generated text via ::before / ::after
content: "\006E"
Looking for &n;
Does not exist — use numeric form (do not confuse with ñ or )
N with apostrophe (ʼn)
Different character — see Related Topics
See it
Live Preview
Lowercase n rendered in common UI contexts.
Inline textThe letter n appears in words like name and number.
Large glyphn
Alphabetl m n o p
Math / codefor (let n = 0; n < 10; n++)
With entitiesHex: n | Decimal: n
Not the sameʼn (n apostrophe) · ñ (ñ)
Code
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: n</p>
<p>Lowercase N using HTML Code: n</p>
<p id="point">Lowercase N using CSS Entity: </p>
<p>Typed directly: n</p>
</body>
</html>
Lowercase N using Hex Code: n
Lowercase N using HTML Code: n
Lowercase N using CSS Entity: n
Typed directly: n
How It Works
1. Hex:U+006E → n in HTML. The browser turns it into n.
2. Decimal: same code point as 110 → n. 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 ñ (ñ) or .
CSS vs HTML
Do not mix escapes
\006E belongs in CSS. n / n belong in HTML.
Look-alikes
n vs ñ vs ʼn
Plain n is U+006E. Spanish ñ is ñ. 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 n, not n.
Case
n vs N
Uppercase N is U+004E — a different code point from U+006E.
Compatibility
Browser Support
Lowercase n (U+006E) and its numeric entity forms (n, n, 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 ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+006E / entitiesFull support
Bottom line: Use a typed n for normal text. Prefer n or n in HTML when encoding must be explicit, and \\006E only inside CSS content.
Remember
Key Takeaways
Unicode: lowercase n is U+006E (decimal 110).
HTML: use n or n 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 n / n / CSS \006E.
Frequently Asked Questions
Use n (hex), n (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 n or n 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 (n or n) 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 n / n. Do not confuse with ñ (ñ) or (non-breaking space).
🤔
Did you know?
Lowercase n is Unicode U+006E (decimal 110). HTML5 has no named entity for it — use n or n when you need an entity form. In math and code, n often stands for a count or index.