HTML Entity for Rial Sign (﷼)

What You'll Learn
How to display the Rial Sign (﷼) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+FDFC (RIAL SIGN) in the Arabic Presentation Forms-B block (U+FE70–U+FEFF)—the currency symbol for the Iranian Rial and other rial-denominated currencies.
Render it with ﷼, ﷼, or CSS escape \FDFC. There is no named HTML entity. Do not confuse ﷼ with the dollar sign $ (U+0024) or euro sign € (U+20AC).
⚡ Quick Reference — Rial Sign
U+FDFCArabic Presentation Forms-B (U+FE70–U+FEFF)
﷼Hexadecimal reference
﷼Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+FDFC
Hex code ﷼
HTML code ﷼
Named entity (none)
CSS code \FDFC
Meaning Rial currency sign
Related U+0024 = dollar sign ($)
U+20AC = euro sign (€)
U+00A3 = pound sign (£)
Block Arabic Presentation Forms-B (U+FE70–U+FEFF)Complete HTML Example
A simple example showing ﷼ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\FDFC";
}
</style>
</head>
<body>
<p>Rial sign (hex): ﷼ 1,000</p>
<p>Rial sign (decimal): ﷼ 1,000</p>
<p id="point">Rial sign (CSS): 1,000</p>
</body>
</html>🌐 Browser Support
The Rial Sign (﷼) is widely supported in all modern browsers:
👀 Live Preview
See the Rial Sign (﷼) in currency contexts:
🧠 How It Works
Hexadecimal Code
﷼ uses the Unicode hexadecimal value FDFC to display the rial sign.
Decimal HTML Code
﷼ uses the decimal Unicode value 65020 for the same character.
CSS Entity
\FDFC is used in CSS stylesheets in the content property of pseudo-elements.
Rial sign result
All three methods render ﷼. Unicode U+FDFC in Arabic Presentation Forms-B. Next: Right Angle.
Use Cases
The Rial Sign (﷼) is commonly used in:
Product pages, shopping carts, and checkout flows with rial pricing.
Banking apps, exchange rates, and financial dashboards.
Multilingual sites targeting Persian and Arabic regions using rial.
Receipts, price lists, and accounting documents in rial currency.
Character pickers, entity documentation, and currency symbol guides.
Pair ﷼ with aria-label or visible currency code (e.g. IRR) for screen readers.
💡 Best Practices
Do
- Use
﷼or﷼for inline rial currency symbols - Set
<meta charset="utf-8">for reliable rendering - Use fonts with Arabic Presentation Forms-B support for e-commerce and finance
- Include ISO currency code (IRR) alongside the symbol for clarity
- Pick one numeric style per project for consistency
Don’t
- Confuse ﷼ with dollar $ or euro € symbols
- Use padded Unicode notation like U+0FDFC—the correct value is
U+FDFC - Use CSS escape
\FDFCin HTML text nodes - Assume every font renders the rial sign identically
- Rely on the symbol alone without locale or currency context for accessibility
Key Takeaways
Two HTML numeric references plus CSS for U+FDFC
﷼ ﷼For CSS stylesheets, use \FDFC in the content property
Unicode U+FDFC — RIAL SIGN (﷼)
Distinct from dollar $, euro €, and pound £ currency symbols
Previous: Reversed Semicolon (⁏) Next: Right Angle
❓ Frequently Asked Questions
﷼ (hex), ﷼ (decimal), or \FDFC in CSS content. There is no named entity. All three render ﷼.U+FDFC (RIAL SIGN). Arabic Presentation Forms-B block (U+FE70–U+FEFF). Hex FDFC, decimal 65020. Used for Iranian Rial and related currencies.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, math operators, punctuation, and more.
8 people found this page helpful
