HTML Entity for Tamil Rupee Sign (௹)

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

What You'll Learn

How to display the Tamil Rupee Sign (௹) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0BF9 (TAMIL RUPEE SIGN) in the Tamil block (U+0B80–U+0BFF)—the rupee currency symbol in Tamil script for regional financial and multilingual content.

Render it with ௹, ௹, or CSS escape \0BF9. There is no named HTML entity. Do not confuse ௹ (Tamil rupee) with ₹ (Indian rupee sign, U+20B9) or ₨ (generic rupee sign, U+20A8).

⚡ Quick Reference — Tamil Rupee Sign

Unicode U+0BF9

Tamil block

Hex Code ௹

Hexadecimal reference

HTML Code ௹

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0BF9
Hex code       ௹
HTML code      ௹
Named entity   (none)
CSS code       \0BF9
Block          Tamil (U+0B80–U+0BFF)
Related        U+20B9 = Indian Rupee Sign (₹)
1

Complete HTML Example

This example demonstrates the Tamil Rupee Sign (௹) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html lang="ta">
<head>
 <meta charset="UTF-8">
 <style>
  #point:after{
   content: "\0BF9";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x0BF9;</p>
<p>Using HTML Code: &#3065;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Tamil Rupee Sign is supported in all modern browsers when UTF-8 encoding and a Tamil-capable font are available:

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

👀 Live Preview

See the Tamil Rupee Sign (௹) in a price context and compared with other rupee symbols:

Price ௹ 500
Large glyph
vs rupee signs ௹ Tamil   ₹ INR   ₨ generic
Numeric refs &#x0BF9; &#3065; \0BF9

🧠 How It Works

1

Hexadecimal Code

&#x0BF9; uses the Unicode hexadecimal value 0BF9 to display the Tamil Rupee Sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\0BF9 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 the glyph: . Unicode U+0BF9 in the Tamil block (U+0B80–U+0BFF). No named entity.

Use Cases

The Tamil Rupee Sign (௹) commonly appears in:

🇳🇴 Tamil Websites

Regional portals and Tamil-language content management systems.

🛒 E-commerce

Online stores serving Tamil-speaking customers.

🏦 Financial Apps

Banking, payment gateways, and currency conversion tools.

🌐 Multilingual Sites

International apps with Tamil locale and currency support.

📄 Invoices

Bills and receipts formatted for Tamil script regions.

🎓 Education

Tamil language tutorials on currency and finance.

📱 Mobile Apps

Payment interfaces and wallet apps for Tamil users.

💡 Best Practices

Do

  • Use &#x0BF9; or &#3065; for the Tamil rupee glyph
  • Set charset="UTF-8" and use fonts with Tamil script support
  • Pick one style (hex or decimal) per project for consistency
  • Add aria-label or visible text for screen readers on price displays
  • Test rendering on devices that may lack Tamil font coverage

Don’t

  • Confuse ௹ (Tamil rupee) with ₹ (Indian rupee sign, U+20B9)
  • Assume every device has a Tamil font—provide fallbacks when needed
  • Put CSS escape \0BF9 directly in HTML text nodes
  • Expect a named HTML entity for U+0BF9—use numeric references
  • Use HTML entities in JS (use \u0BF9 instead)

Key Takeaways

1

Two HTML references both render ௹

&#x0BF9; &#3065;
2

For CSS stylesheets, use the escape in the content property

\0BF9
3

Unicode U+0BF9 — TAMIL RUPEE SIGN

4

No named entity—use numeric references or CSS escape

5

Requires UTF-8 and Tamil-capable fonts for reliable display

❓ Frequently Asked Questions

Use &#x0BF9; (hex), &#3065; (decimal), or \0BF9 in CSS content. There is no named HTML entity. All three produce ௹.
U+0BF9 (TAMIL RUPEE SIGN). Tamil block (U+0B80–U+0BFF). Hex 0BF9, decimal 3065.
In Tamil currency displays, regional financial sites, multilingual e-commerce, Tamil language websites, financial applications, invoices, and any content that needs currency shown in Tamil script.
HTML numeric references (&#3065; or &#x0BF9;) go directly in markup. The CSS escape \0BF9 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ௹ in the Tamil block use numeric hex or decimal references—standard practice for regional script characters.

Explore More HTML Entities!

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