HTML Entity for Numero Sign (№)

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

What Is Numero Sign?

Numero sign (№) is the Unicode character at U+2116 in the Letterlike Symbols block. Official name: NUMERO SIGN. It abbreviates “number” / “No.” in many European and international contexts.

Remember
Character     №
Unicode       U+2116
Named entity  №
Hex entity    №
Decimal       №
CSS escape    \2116
Not the same  # · ℗ · ™

Prefer № in HTML when you want a readable entity, or paste № directly in UTF-8. Numeric forms work the same.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity№HTML markup (preferred entity)
Direct character№HTML text (UTF-8)
Hex entity№HTML markup
Decimal entity№HTML markup
CSS escape\2116Stylesheet content

When to Use Which

SituationUse
European-style “number” labels№ or typed №
Hashtags / hash / CSS id docs# / #
Sound recording copyright℗ / ℗
Trade mark™ / ™
Generated text via ::before / ::aftercontent: "\2116"

Live Preview

Numero sign rendered in common numbering contexts.

Example № 12 • № 8470
Large glyph №
Catalog Product ref. № A-204
Compared №   #   ℗   ™
With entities Named: № | Hex: № | Decimal: №

Complete HTML Example

One page that shows Numero Sign with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce №, plus a label example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Numero Sign (№) in HTML</title>
  <style>
    #point::after {
      content: "\2116";
    }
  </style>
</head>
<body>
  <p>Symbol using Named Entity: &numero;</p>
  <p>Symbol using Hex Code: &#x2116;</p>
  <p>Symbol using HTML Code: &#8470;</p>
  <p id="point">Symbol using CSS Entity: </p>
  <p>Typed directly: №</p>
  <p>Example: Article &numero; 3</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &numero; is the HTML5 name for U+2116 → №. Most readable entity form.

2. Hex: U+2116 → &#x2116; in HTML. Same glyph as the named form.

3. Decimal: same code point as 8470 → &#8470;. Same result as hex and named.

4. CSS: use \2116 in content (not an HTML entity). #point::after appends that № after the paragraph text.

5. Typed / example: paste № in UTF-8, or write &numero; 3 for a numbered label.

Pitfalls & Tips

Common mistakes when working with Numero Sign.

#

Not the number sign

# (&num;) is hash/pound. Use № when you mean the “No.” abbreviation.

Spacing

Pair with the number

Write № 12 (or locale-typical spacing), not a bare glyph with no digits after it.

Locale

Audience matters

№ is common in Slavic and some other European texts. English UIs often use No. or # instead.

CSS vs HTML

Do not mix escapes

\2116 belongs in CSS strings. &numero; / &#x2116; / &#8470; belong in HTML.

Fonts

Check glyph coverage

Most modern fonts include №, but some UI fonts may fall back. Test your stack if the label is critical.

Semicolon

End references

Always finish named/numeric forms with ; — write &numero;, not &numero.

Browser Support

Numero sign (U+2116) and its entity forms (&numero;, &#x2116;, &#8470;, CSS \\2116) are supported in all mainstream browsers.

✓ Universal support

Numero Sign (№)

Encode with named, 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 All versions
Yes
U+2116 / entities Full support

Bottom line: Prefer &numero; or a typed № in HTML. Use &#x2116; or &#8470; when numeric form is required, and \\2116 only inside CSS content.

Key Takeaways

  • Unicode: numero sign is U+2116 (decimal 8470) — glyph №.
  • HTML: use &numero;, &#x2116;, &#8470;, or type №.
  • CSS: use \2116 inside content for generated text.
  • Meaning: № = “number” abbreviation — not # (hash).

One line: U+2116 → &numero; / &#x2116; / &#8470; / CSS \2116.

Frequently Asked Questions

Use &numero; (named), &#x2116; (hex), &#8470; (decimal), or the CSS escape \2116 in content. You can also paste № directly in a UTF-8 document.
U+2116 (NUMERO SIGN). Hex 2116, decimal 8470. It belongs to the Letterlike Symbols block (U+2100–U+214F).
Yes. Use &numero;. Numeric forms &#8470; and &#x2116; also work.
Use it when you need the European-style “number” abbreviation (№ 12, Article № 3). Prefer # for hashtags and CSS id selectors.
HTML entities (&numero;, &#8470;, or &#x2116;) go in markup. The CSS escape \2116 goes in stylesheet strings (usually content on ::before/::after).
No. № is U+2116 (numero sign). # is U+0023 (number sign / hash). They look different and serve different purposes.

Did you know?

Numero sign is Unicode U+2116 (decimal 8470) — glyph № in the Letterlike Symbols block. It abbreviates “number” / “No.” in many European locales. HTML5 names it &numero;. Do not confuse it with the hash # (&num;).

Next: Oe Ligature

Learn the HTML entity for the oe ligature (U+0153).

Oe Ligature 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