HTML Entity for Rupee Sign (₨)

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

What You'll Learn

How to display the Rupee Sign (₨) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20A8 (RUPEE SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the generic rupee currency symbol used historically across India, Pakistan, Sri Lanka, Nepal, and other regions.

Use ₨, ₨, or CSS \20A8. There is no named HTML entity. For modern Indian Rupee (INR) pricing, use the distinct Indian Rupee sign (₹, U+20B9) instead of ₨.

⚡ Quick Reference — Rupee Sign

Unicode U+20A8

Currency Symbols

Hex Code ₨

Hexadecimal reference

HTML Code ₨

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20A8
Hex code       ₨
HTML code      ₨
Named entity   (none)
CSS code       \20A8
Meaning        Generic rupee currency symbol
Related        U+20B9 = Indian rupee sign (₹)
               U+20BD = Ruble sign (₽)
1

Complete HTML Example

This example demonstrates the Rupee Sign (₨) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20A8";
  }
 </style>
</head>
<body>
<p>Rupee Sign using Hexadecimal: &#x20A8;500</p>
<p>Rupee Sign using HTML Code: &#8360;1,000</p>
<p id="point">Rupee Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Rupee Sign (₨) is supported in all modern browsers when using numeric HTML entities or CSS escapes:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See ₨ rendered live and compared with the Indian rupee sign (₹):

Large glyph
Prices ₨500   ₨1,000
vs INR sign ₨ generic rupee   vs   ₹ Indian rupee
Numeric refs &#x20A8; &#8360; \20A8

🧠 How It Works

1

Hexadecimal Code

&#x20A8; uses Unicode hexadecimal 20A8 to display ₨ in HTML markup.

HTML markup
2

Decimal HTML Code

&#8360; uses decimal Unicode value 8360 for the same character.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+20A8 is the generic RUPEE SIGN. No named entity. For INR use U+20B9 (₹).

Use Cases

The Rupee Sign (₨) commonly appears in:

📄 Legacy finance

Older financial documents and systems using the generic rupee symbol.

🇮🇵 South Asia

Content referencing rupee currencies in Pakistan, Nepal, Sri Lanka, and region-wide contexts.

💰 Currency guides

Symbol reference pages, glossaries, and Unicode character lists.

🛒 E-commerce

Legacy storefronts or multi-country rupee pricing (prefer ₹ for modern INR).

📖 Historical

Archives, digitized records, and pre-2010 Indian content using ₨.

🌐 FX displays

Multi-currency tables listing rupee-denominated currencies.

💡 Best Practices

Do

  • Use &#x20A8; or &#8360; in HTML (no named entity)
  • Prefer ₹ (U+20B9) for modern Indian Rupee (INR) pricing
  • Keep one numeric method (hex or decimal) consistent per document
  • Add aria-label or visible currency code (PKR, NPR, LKR) for accessibility
  • Declare UTF-8 with <meta charset="utf-8">

Don’t

  • Confuse ₨ (generic rupee) with ₹ (official Indian rupee sign)
  • Expect a named HTML entity for U+20A8
  • Put CSS escape \20A8 in HTML text nodes
  • Use ₨ on new INR e-commerce when ₹ is the standard
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS insert ₨

&#x20A8; &#8360;
2

For CSS, use \20A8 in the content property

3

Unicode U+20A8 — RUPEE SIGN (generic)

4

No named entity—use hex or decimal

5

For INR use U+20B9 (₹) instead

❓ Frequently Asked Questions

Use &#x20A8; (hex), &#8360; (decimal), or \20A8 in CSS content. There is no named HTML entity. All three methods render ₨.
U+20A8 (RUPEE SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20A8, decimal 8360. Generic rupee symbol for currencies across South Asia.
In legacy financial content, historical documents, multi-country rupee references, and symbol guides. For modern Indian Rupee (INR) e-commerce and banking, use U+20B9 (₹) instead.
U+20A8 (₨) is the generic RUPEE SIGN. U+20B9 (₹) is the INDIAN RUPEE SIGN adopted in 2010 as the official INR symbol. They look different and serve different purposes.
HTML references (&#8360; or &#x20A8;) go in markup. The CSS escape \20A8 belongs in stylesheets, typically in the content property of pseudo-elements. Both render ₨.

Explore More HTML Entities!

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