HTML Entity for Peseta Sign (₧)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+20A7

What Is the Peseta Sign Entity?

Peseta sign (₧) is the Currency Symbols character at Unicode U+20A7 (PESETA SIGN). It represents the former Spanish peseta (ESP), now replaced by the euro. There is no named HTML entity; use hex, decimal, UTF-8, or CSS.

Remember
Character     ₧
Unicode       U+20A7
Named entity  none
Hex entity    ₧
Decimal       ₧
CSS escape    \20A7

All numeric and UTF-8 forms produce the same glyph: ₧. Prefer ₧ for portable markup; paste ₧ in UTF-8 when convenient.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entitynoneNot defined in HTML5
Hex entity₧HTML markup
Decimal entity₧HTML markup
Direct character₧HTML text (UTF-8 default)
CSS escape\20A7Stylesheet content

When to Use Which

SituationUse
Portable HTML without pasting Unicode₧ or ₧
UTF-8 historical / archive textType or paste ₧
Generated text via ::before / ::aftercontent: "\20A7"
Modern Spanish currency€ (€)
Peso (different currency)₱ (U+20B1)

Live Preview

Peseta sign rendered in common contexts.

Glyph ₧
Large glyph ₧
In a price ₧ 1,500
With entities Hex: ₧ | Decimal: ₧ | Named: none
Related symbols € (€) · ₱ (peso) · Pts

Complete HTML Example

One page that shows the peseta sign with hex, decimal, direct, and CSS forms. Use View Output or open the live editor.

Hex + Decimal + Direct + CSS

Four ways to produce ₧ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Peseta Sign (₧) in HTML</title>
  <style>
    #point::after {
      content: "\20A7";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x20A7;</p>
  <p>Using Decimal: &#8359;</p>
  <p>Using Direct Character: ₧</p>
  <p id="point">Using CSS Entity: </p>
  <p>Price: &#x20A7; 1,500 pesetas</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+20A7 → &#x20A7; in HTML. Best portable choice (no named entity).

2. Decimal: same code point as 8359 → &#8359;. Same glyph.

3. Direct: paste ₧ in a UTF-8 file with <meta charset="UTF-8">.

4. CSS: use \20A7 in content (not an HTML entity). #point::after appends that ₧ after the paragraph text.

5. Named: HTML5 has none — do not invent a name like &peseta;.

Pitfalls & Tips

Common mistakes when working with this currency entity.

No name

Do not invent a named entity

There is no &…; name for U+20A7. Use &#x20A7; or &#8359;.

Not euro

Historical currency

Spain uses the euro today. Use &euro; for current prices; keep ₧ for historical amounts.

Not peso

₧ vs ₱

Peso (U+20B1) is a different currency family. Do not swap the symbols.

Font

Glyph coverage varies

Some fonts render ₧ as “Pts” style. Provide a fallback or write “pesetas” in words if needed.

CSS vs HTML

Do not mix escapes

\20A7 belongs in CSS. &#x20A7; / &#8359; belong in HTML.

UTF-8

Declare charset

If you paste ₧ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Peseta sign (U+20A7) and its entity forms (&#x20A7;, &#8359;, CSS \\20A7) are supported in all mainstream browsers. Glyph availability depends on the font.

✓ Universal support

Peseta Sign (&#x20A7;)

Prefer &#x20A7;, or encode with decimal or CSS escape — same glyph everywhere (when the font has it).

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+20A7 / entities Full support

Bottom line: There is no named entity. Prefer &#x20A7; or &#8359; in HTML, and \\20A7 only inside CSS content.

Key Takeaways

  • Unicode: peseta sign is U+20A7 (decimal 8359), Currency Symbols.
  • HTML: no named entity — use &#x20A7; or &#8359;.
  • CSS: use \20A7 inside content for generated text.
  • Meaning: historical Spanish peseta — not € or ₱.

One line: U+20A7 → &#x20A7; / &#8359; / CSS \20A7 (no named entity).

Frequently Asked Questions

Use &#x20A7; (hex), &#8359; (decimal), type ₧ in UTF-8, or the CSS escape \20A7 in content. There is no named HTML entity for U+20A7.
U+20A7 (PESETA SIGN). Hex 20A7, decimal 8359. It belongs to Currency Symbols and represents the former Spanish peseta (ESP).
No. HTML5 does not define a named entity for this character. Prefer &#x20A7; or &#8359;, or paste ₧ in a UTF-8 document.
Use it for historical Spanish prices, archives, and legacy financial content. Prefer &#x20A7; for portable markup. For modern Spanish currency, use the euro (&euro;).
HTML numeric entities (&#8359; or &#x20A7;) go in markup. The CSS escape \20A7 is used in stylesheets (usually in the content property of ::before/::after). Both render ₧.
₱ (U+20B1) is the peso sign. € (U+20AC, &euro;) is the euro. ₧ is specifically the peseta — do not substitute another currency symbol.

Did you know?

Peseta sign (₧) is Unicode U+20A7 (decimal 8359) — PESETA SIGN in Currency Symbols. There is no named HTML entity; use &#x20A7;, &#8359;, UTF-8 ₧, or CSS \20A7. The Spanish peseta was replaced by the euro; keep this symbol for historical and archival amounts.

Next: Peso Sign

Learn the HTML entity for the peso currency sign — the next character in this entity sequence.

Peso Sign tutorial →

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