HTML Entity for Gujarati Rupee Sign (૱)

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
U+0AF1Gujarati block
૱Hexadecimal reference
૱Decimal reference
—Use numeric codes only
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 (₹)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0AF1";
}
</style>
</head>
<body>
<p>Gujarati Rupee Sign using Hexadecimal: ૱</p>
<p>Gujarati Rupee Sign using HTML Code: ૱</p>
<p id="point">Gujarati Rupee Sign using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Gujarati Rupee Sign (૱) renders when fonts include the Gujarati block:
👀 Live Preview
Gujarati Rupee sign (૱) in sample prices, compared with the standard Indian Rupee sign (₹):
🧠 How It Works
Hexadecimal Code
૱ uses the Unicode hexadecimal value 0AF1 to display the Gujarati Rupee sign. The x prefix indicates hexadecimal format.
Decimal HTML Code
૱ uses the decimal Unicode value 2801 to display the same character.
CSS Entity
\0AF1 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Product prices and checkout in Gujarati for Gujarat-focused markets.
Statements, loans, and financial reports in Gujarati script.
Government, news, and services for Gujarati-speaking audiences.
Forms and notices in Gujarati that show currency amounts.
Locale gu UI that displays INR with the Gujarati glyph.
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
\0AF1in HTML text nodes - Rely on fonts that omit the Gujarati block without a fallback
- Confuse Gujarati rupee (૱) with Bengali taka (৳)
Key Takeaways
Two HTML numeric references plus CSS insert U+0AF1
૱ ૱For CSS, use \0AF1 in the content property
Unicode U+0AF1 — GUJARATI RUPEE SIGN (Gujarati block)
Latin INR UI often uses ₹ (₹) instead
Next: Half Ring Below (U+0351)
❓ Frequently Asked Questions
૱ (hex), ૱ (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.૱ or ૱) 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.
8 people found this page helpful
