HTML Entity for Peseta Sign (₧)

What You'll Learn
How to display the Peseta sign (₧) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20A7 (PESETA SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the historical currency symbol for the Spanish peseta (ESP), replaced by the euro in 2002.
Render it with ₧, ₧, or CSS escape \20A7. There is no named HTML entity for U+20A7. Use it for archival, historical, and educational content rather than current Spanish retail pricing.
⚡ Quick Reference — Peseta Sign
U+20A7Currency Symbols block
₧Hexadecimal reference
₧Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+20A7
Hex code ₧
HTML code ₧
Named entity (none)
CSS code \20A7
Currency ESP (Spanish peseta, historical)
Related U+20AC = euro (€); U+20A7 = peseta (₧)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: "\20A7";
}
</style>
</head>
<body>
<p>Peseta (hex): ₧</p>
<p>Peseta (decimal): ₧</p>
<p>Price: ₧ 1,500 pesetas</p>
<p id="point">Peseta (CSS): </p>
</body>
</html>🌐 Browser Support
U+20A7 is supported in modern browsers when rendered with a Unicode-capable font:
👀 Live Preview
See the Peseta sign (₧) in historical and financial contexts:
🧠 How It Works
Hexadecimal Code
₧ uses the Unicode hexadecimal value 20A7 to display the Peseta sign.
Decimal HTML Code
₧ uses the decimal Unicode value 8359 for the same character.
CSS Entity
\20A7 is used in CSS stylesheets in the content property of pseudo-elements for price prefixes.
Same visual result
All three methods produce ₧. Unicode U+20A7 in Currency Symbols. Previous: Permanent Paper Sign (♾).
Use Cases
The Peseta sign (₧) is commonly used in:
Digitized newspapers, catalogs, and documents from pre-2002 Spain.
Economic history displays and currency collection labels.
Articles on exchange rates, inflation, and the euro transition.
Economics courses and Unicode character reference guides.
Coin and banknote catalogs referencing the Spanish peseta.
Legacy software documentation for ESP currency formatting.
💡 Best Practices
Do
- Use
₧or₧consistently per project - Label historical amounts clearly (e.g. “1998 prices in pesetas”)
- Serve pages with UTF-8 (
<meta charset="utf-8">) - Use € (euro) for current Spanish retail and banking content
- Add
aria-label="Spanish peseta"for screen readers when needed
Don’t
- Use ₧ for current Spanish prices—Spain uses the euro (€)
- Expect a named entity—none exists for U+20A7
- Put CSS escape
\20A7in HTML text nodes - Use padded Unicode notation like U+020A7—the correct value is
U+20A7 - Confuse ₧ (peseta) with ₱ (peso) or € (euro)
Key Takeaways
Two HTML numeric references render ₧
₧ ₧For CSS stylesheets, use \20A7 in the content property
Unicode U+20A7 — PESETA SIGN for historical Spanish peseta (ESP)
Currency Symbols block (U+20A0–U+20CF); Spain now uses € (euro)
Previous: Permanent Paper Sign (♾) Next: Peso Sign (₱)
❓ Frequently Asked Questions
₧ (hex), ₧ (decimal), or \20A7 in CSS content. All produce ₧. There is no named entity.U+20A7 (PESETA SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20A7, decimal 8359. Historical symbol for the Spanish peseta (ESP).Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, math operators, arrows, and more.
8 people found this page helpful
