HTML Entity for Ruble Sign (₽)

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

What You'll Learn

How to display the Ruble Sign (₽) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20BD (RUBLE SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the official symbol for the Russian ruble, adopted in 2013.

Render it with ₽, ₽, or CSS escape \20BD. There is no named HTML entity. Do not confuse ₽ with the generic rupee sign (₨) or Indian rupee sign (₹).

⚡ Quick Reference — Ruble Sign

Unicode U+20BD

Currency Symbols

Hex Code ₽

Hexadecimal reference

HTML Code ₽

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20BD";
  }
 </style>
</head>
<body>
<p>Ruble Sign using Hexadecimal: &#x20BD;</p>
<p>Ruble Sign using HTML Code: &#8381;</p>
<p id="point">Ruble Sign using CSS Entity: </p>
<p>Price: 1 500 &#8381;</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Ruble Sign entity is supported in all modern browsers (added to Unicode 7.0 in 2014):

Chrome 36+
Firefox 31+
Safari 9+
Edge 12+
Opera 23+
Android 5+
iOS Safari 9+

👀 Live Preview

See the ruble sign (₽) in a price context and compared with other currency symbols:

Price 1 500 ₽
Large glyph
vs rupee signs ₽ ruble   ₨ rupee   ₹ INR
Numeric refs &#x20BD; &#8381; \20BD

🧠 How It Works

1

Hexadecimal Code

&#x20BD; uses the Unicode hexadecimal value 20BD to display the Ruble Sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20BD 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+20BD in the Currency Symbols block (U+20A0–U+20CF). No named entity.

Use Cases

The Ruble Sign (₽) commonly appears in:

🛒 E-commerce

Product pages, carts, and checkout prices (e.g. 1 500 ₽).

🏦 Banking

Account balances, exchange rates, and financial data in rubles.

📄 Invoices

Billing documents, receipts, and payment confirmations.

🇷🇺 Russian markets

Landing pages and offers targeting Russian audiences.

💰 Multi-currency

Converters, comparison tables, and finance dashboards.

🌐 Symbol guides

Currency entity reference pages and glossaries.

💡 Best Practices

Do

  • Use &#x20BD; or &#8381; for price markup (U+20BD)
  • Place the symbol after the amount (e.g. 1 500 ₽) per Russian convention
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add aria-label (e.g. “1500 rubles”) for accessibility
  • Use CSS content for reusable price components

Don’t

  • Confuse ₽ with ₨ (generic rupee) or ₹ (Indian rupee)
  • Substitute руб. or RUB when the symbol is required
  • Put CSS escape \20BD in HTML text nodes
  • Assume every font renders ₽ clearly at small sizes
  • Expect a named HTML entity for U+20BD—use numeric references instead

Key Takeaways

1

Three ways to render ₽ in HTML and CSS

&#x20BD; &#8381;
2

For CSS stylesheets, use the escape in the content property

\20BD
3

Unicode U+20BD — RUBLE SIGN

4

No named entity—use numeric references or CSS escape

5

Not the same as ₨ (rupee) or ₹ (Indian rupee)

❓ Frequently Asked Questions

Use &#x20BD; (hex), &#8381; (decimal), or \20BD in CSS content. There is no named HTML entity. All three produce ₽.
U+20BD (RUBLE SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20BD, decimal 8381. Official Russian ruble symbol since 2013.
When displaying ruble prices, financial data, invoices, e-commerce checkout amounts, payment interfaces, or any content for Russian markets requiring the standard ruble symbol.
HTML5 named entities cover common Latin and math characters, but not every Unicode symbol. For U+20BD (₽), use numeric references &#x20BD; or &#8381; in HTML, or CSS escape \20BD in stylesheets.
HTML numeric references (&#8381; or &#x20BD;) go directly in markup. The CSS escape \20BD is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

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