HTML Entity for Uppercase N Latin (ɴ)

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

What Is Uppercase N Latin?

Uppercase N latin (ɴ) is the Unicode character at U+0274 in IPA Extensions. Official name: LATIN LETTER SMALL CAPITAL N — an IPA small-capital N used for the uvular nasal in phonetic transcription.

Remember
Character     ɴ
Unicode       U+0274
Hex entity    ɴ
Decimal       ɴ
CSS escape    \0274
Named entity  (none)
Not the same  N · n · Ɲ

Prefer ɴ or ɴ in HTML markup. You can also type ɴ in UTF-8. There is no named entity. Despite the URL, Unicode treats this as a small capital, not plain capital N.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterɴHTML text (UTF-8)
Hex entityɴHTML markup (preferred)
Decimal entityɴHTML markup
CSS escape\0274Stylesheet content
Named entity—Not defined in HTML5
Plain capital NN (U+004E)Different letter

When to Use Which

SituationUse
IPA small capital N (ɴ)ɴ or ɴ
Plain capital NN (U+004E)
Plain lowercase nn (U+006E)
N with left hook (palatal nasal)Ɲ (Ɲ)
N with grave (Ǹ)Ǹ (Ǹ)
Generated text via ::before / ::aftercontent: "\0274"

Live Preview

Small capital N rendered next to related letters.

Example IPA: /ɴ/
Large glyph ɴ
Compared ɴ   N   n   Ɲ
With entities Hex: ɴ | Decimal: ɴ

Complete HTML Example

One page that shows small capital N with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ɴ, plus a short IPA label.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase N Latin (ɴ) in HTML</title>
  <style>
    #point::after {
      content: "\0274";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x0274;</p>
  <p>Using HTML Code: &#628;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ɴ</p>
  <p>IPA label: /ɴ/</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+0274 → &#x0274; in HTML. The browser turns it into ɴ.

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

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

4. Typed / IPA: paste ɴ in UTF-8, or write /ɴ/ for a short phonetic label.

5. No named entity: HTML5 does not define a name for U+0274 — use numeric references or type the character.

Pitfalls & Tips

Common mistakes when working with small capital N.

Named?

No named entity

HTML5 does not define a named entity for U+0274. Use &#x0274; or &#628;.

vs N

Not plain capital N

Keyboard N is U+004E. Use U+0274 only for IPA small capital N (uvular nasal).

URL

“Uppercase” in the URL

The slug says uppercase, but Unicode names this a small capital letter — an IPA symbol, not ASCII N.

vs Ɲ

Not N with left hook

Ɲ is capital N with left hook (palatal nasal). ɴ is small capital N (uvular nasal).

CSS vs HTML

Do not mix escapes

\0274 belongs in CSS strings. &#x0274; / &#628; belong in HTML.

Fonts

IPA font coverage

Some UI fonts omit IPA Extensions. Prefer Doulos SIL, Charis SIL, or another IPA-capable font.

Browser Support

Small capital N (U+0274) and its entity forms (&#x0274;, &#628;, CSS \\0274) are supported in all mainstream browsers. Visible glyphs depend on IPA Extensions font coverage.

✓ Universal support

Uppercase N Latin (&#x0274;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes
U+0274 / entities Full support

Bottom line: Prefer &#x0274; or &#628; in HTML. Use \\0274 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: this letter is U+0274 (decimal 628) — glyph ɴ.
  • HTML: use &#x0274; or &#628; — no named entity; typing ɴ also works.
  • CSS: use \0274 inside content for generated text.
  • Watch out: ɴ ≠ plain N ≠ n ≠ Ɲ.

One line: U+0274 → &#x0274; / &#628; / CSS \0274.

Frequently Asked Questions

Use &#x0274; (hex), &#628; (decimal), type ɴ directly in UTF-8, or the CSS escape \0274 in content. There is no named HTML entity.
U+0274 (LATIN LETTER SMALL CAPITAL N). Hex 0274, decimal 628. It belongs to IPA Extensions (U+0250–U+02AF).
No. Use numeric references &#x0274; or &#628;, or type ɴ in UTF-8.
No. ɴ is an IPA small capital N (U+0274). Plain N is U+004E. Plain n is U+006E.
Use it in IPA and linguistic text for the uvular nasal — not as a substitute for ordinary capital N.
HTML entities (&#628; or &#x0274;) go in markup. The CSS escape \0274 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Small capital N (ɴ) is Unicode U+0274 (decimal 628) — LATIN LETTER SMALL CAPITAL N in IPA Extensions. HTML5 has no named entity — use &#x0274; or &#628;. The URL says “uppercase,” but Unicode classifies this as a small capital letter. In the IPA it represents the uvular nasal. Do not confuse with plain N (U+004E).

Next: Uppercase N Left Hook

Learn the HTML entity for uppercase N with left hook (U+019D).

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