HTML Entity for Gujarati Rupee Sign (૱)

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

What You'll Learn

How to display the Gujarati Rupee Sign (૱) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0AF1 (GUJARATI RUPEE SIGN) in the Gujarati block (U+0A80–U+0AFF)—the rupee symbol shaped for Gujarati-script content (Indian Rupee, INR).

Render it with ૱, ૱, or CSS escape \0AF1. There is no named HTML entity. For Latin-script INR prices, sites often use ₹ (₹, U+20B9 Indian Rupee Sign) instead; use ૱ when your UI is in Gujarati. See also Bengali Rupee Sign (৳) for another Indic-script currency glyph.

⚡ Quick Reference — Gujarati Rupee Sign

Unicode U+0AF1

Gujarati block

Hex Code ૱

Hexadecimal reference

HTML Code ૱

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0AF1
Hex code       ૱
HTML code      ૱
Named entity   (none)
CSS code       \0AF1
Meaning        Gujarati rupee sign (INR)
Block          Gujarati (U+0A80–U+0AFF)
Related        U+20B9 = Indian Rupee sign (₹)
1

Complete HTML Example

This example demonstrates the Gujarati Rupee Sign (૱) using hexadecimal code, decimal HTML code, and a CSS content escape. Use a Gujarati-capable font for correct rendering:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0AF1";
  }
 </style>
</head>
<body>
<p>Gujarati Rupee Sign using Hexadecimal: &#x0AF1;</p>
<p>Gujarati Rupee Sign using HTML Code: &#2801;</p>
<p id="point">Gujarati Rupee Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Gujarati Rupee Sign (૱) renders when fonts include the Gujarati block:

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

👀 Live Preview

Gujarati Rupee sign (૱) in sample prices, compared with the standard Indian Rupee sign (₹):

Gujarati price ૱ ૧,૦૦૦   ૱ ૫૦,૦૦૦
Gujarati vs standard INR ૱ (U+0AF1)   ₹ (U+20B9)
Large glyph
Indic script rupee signs ૱ Gujarati   ৳ Bengali
Numeric refs &#x0AF1; &#2801; \0AF1

🧠 How It Works

1

Hexadecimal Code

&#x0AF1; uses the Unicode hexadecimal value 0AF1 to display the Gujarati Rupee sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\0AF1 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+0AF1 is in the Gujarati block. Next: Half Ring Below (U+0351).

Use Cases

The Gujarati Rupee Sign (૱) is commonly used in:

🛒 E-commerce

Product prices and checkout in Gujarati for Gujarat-focused markets.

🏦 Banking

Statements, loans, and financial reports in Gujarati script.

🌐 Regional portals

Government, news, and services for Gujarati-speaking audiences.

📄 Official docs

Forms and notices in Gujarati that show currency amounts.

📱 Multilingual apps

Locale gu UI that displays INR with the Gujarati glyph.

📚 Education

Language learning and reference content for Gujarati numerals and currency.

💡 Best Practices

Do

  • Use fonts with Gujarati support (e.g. Noto Sans Gujarati, Shruti)
  • Declare UTF-8 with <meta charset="utf-8">
  • Set lang="gu" on Gujarati content pages
  • Pair with locale-aware number formatting for INR amounts
  • Clarify currency with INR or Gujarati context in multi-script UIs

Don’t

  • Assume U+0AF1 and U+20B9 (₹) are interchangeable in every design
  • Expect a named HTML entity for U+0AF1
  • Use CSS \0AF1 in HTML text nodes
  • Rely on fonts that omit the Gujarati block without a fallback
  • Confuse Gujarati rupee (૱) with Bengali taka (৳)

Key Takeaways

1

Two HTML numeric references plus CSS insert U+0AF1

&#x0AF1; &#2801;
2

For CSS, use \0AF1 in the content property

3

Unicode U+0AF1 — GUJARATI RUPEE SIGN (Gujarati block)

4

Latin INR UI often uses &#x20B9; (₹) instead

❓ Frequently Asked Questions

Use &#x0AF1; (hex), &#2801; (decimal), or \0AF1 in CSS content. There is no named entity. All three methods render the Gujarati Rupee sign (૱) correctly.
U+0AF1 (GUJARATI RUPEE SIGN). Gujarati block (U+0A80–U+0AFF). Hex 0AF1, decimal 2801. Used for Indian Rupee (INR) in Gujarati-script content.
On Gujarati-language websites, Gujarat-focused portals, e-commerce in Gujarati, banking for regional users, government forms in Gujarati script, and multilingual apps with a Gujarati locale.
HTML references (&#2801; or &#x0AF1;) go in markup. The CSS escape \0AF1 is used in stylesheets, typically on ::before or ::after. Both produce ૱.
U+0AF1 is the Gujarati-script rupee glyph (Gujarati block). U+20B9 is the standard Indian Rupee sign (₹) in Currency Symbols, widely used for INR in Latin UI. Pick the symbol that matches your script and typography guidelines.

Explore More HTML Entities!

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