HTML Entity for Numero Sign (№)

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

What You'll Learn

How to display the Numero Sign (№) in HTML using named, hexadecimal, decimal, and CSS escape methods. This symbol abbreviates “number” in European and international contexts.

This character is U+2116 (NUMERO SIGN) in the Letterlike Symbols block (U+2100–U+214F). Render it with the named entity №, №, №, or CSS escape \2116. Compare with Number Sign (#, #)—a distinct hash symbol used for hashtags and CSS selectors.

⚡ Quick Reference — Numero Sign

Unicode U+2116

Letterlike Symbols

Hex Code №

Hexadecimal reference

HTML Code №

Decimal reference

Named Entity №

HTML5 named entity for U+2116

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2116
Hex code       №
HTML code      №
Named entity   №
CSS code       \2116
Meaning        Numero Sign (No., number)
Related        U+0023 = number sign (#, #)
               U+2117 = sound recording copyright (℗, ℗)
               U+2122 = trade mark sign (™, ™)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

A simple example showing № using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2116";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2116;</p>
<p>Symbol (decimal): &#8470;</p>
<p>Symbol (named): &numero;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2116 is widely supported in all modern browsers for HTML entities and CSS content escapes:

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

👀 Live Preview

See № in common numbering and reference contexts:

Numbering № 12 • № 8470
Large glyph
Catalog Product ref. № A-204
Document Article № 3 — Section 2
Entity refs &numero; &#x2116; &#8470; \2116

🧠 How It Works

1

Named Entity

&numero; is the HTML named entity for U+2116—readable and widely supported in HTML5 documents.

HTML markup
2

Hexadecimal Code

&#x2116; uses the Unicode hexadecimal value 2116 to display the numero sign.

HTML markup
3

Decimal HTML Code

&#8470; uses the decimal Unicode value 8470 to display the same character.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+2116 in Letterlike Symbols (U+2100–U+214F).

Use Cases

The № symbol (&numero;) is commonly used in:

🌎 European content

Numbering in Russian, Ukrainian, and other locales where № is standard.

📦 Catalogs

Product numbers, SKU references, and inventory labels.

📜 Legal docs

Official forms, statutes, and reference numbering.

📋 Stationery

Invoices, receipts, and printed order forms.

📚 Reference guides

Unicode charts and HTML entity documentation.

🌐 Multilingual sites

International pages that need locale-appropriate numbering symbols.

💡 Best Practices

Do

  • Use &numero; for readable European-style numbering markup
  • Distinguish № (numero sign) from # (number sign, &num;)
  • Pair № with the actual number (e.g. № 5) for clarity
  • Use numeric references in generated or XML-first workflows
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse № (&numero;) with # (&num;, hash/number sign)
  • Use # when № is the culturally expected abbreviation
  • Use padded Unicode notation like U+02116—the correct value is U+2116
  • Put CSS escape \2116 in HTML text nodes
  • Use \02116 in CSS—the correct escape is \2116

Key Takeaways

1

Three HTML references plus CSS all render №

&#x2116; &#8470; &numero;
2

For CSS stylesheets, use the escape in the content property

\2116
3

Unicode U+2116 — NUMERO SIGN

4

Letterlike Symbols block (U+2100–U+214F)

5

&numero; is the preferred named entity for readable source markup

❓ Frequently Asked Questions

Use &numero; (named), &#x2116; (hex), &#8470; (decimal), or \2116 in CSS content. All produce №.
U+2116 (NUMERO SIGN). Letterlike Symbols block (U+2100–U+214F). Hex 2116, decimal 8470. Named entity: &numero;.
No. № (U+2116, numero sign, &numero;) abbreviates “number” in European contexts. # (U+0023, number sign, &num;) is the hash/pound symbol used for hashtags and CSS.
HTML references (&#8470;, &#x2116;, or &numero;) go directly in markup. The CSS escape \2116 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &numero; is the named HTML entity for U+2116 and is the standard readable reference in HTML5 markup.

Explore More HTML Entities!

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