HTML Entity for Guarani Sign (₲)

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

What You'll Learn

How to display the Guarani Sign (₲) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20B2 (GUARANI SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the official symbol for the Paraguayan Guarani (ISO code PYG).

Render it with ₲, ₲, or CSS escape \20B2. There is no named HTML entity for ₲. Do not confuse ₲ with the letter G, the Ghana cedi (₵), or the generic currency sign (¤).

⚡ Quick Reference — Guarani Sign

Unicode U+20B2

Currency Symbols

Hex Code ₲

Hexadecimal reference

HTML Code ₲

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20B2
Hex code       ₲
HTML code      ₲
Named entity   (none)
CSS code       \20B2
Meaning        Paraguayan Guarani (PYG)
Related        U+20AC = Euro (€); U+20A9 = Won (₩)
1

Complete HTML Example

This example demonstrates the Guarani Sign (₲) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20B2";
  }
 </style>
</head>
<body>
<p>Guarani Sign using Hexadecimal: &#x20B2;</p>
<p>Guarani Sign using HTML Code: &#8370;</p>
<p id="point">Guarani Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Guarani Sign (₲) is widely supported in modern browsers when the font includes Currency Symbols:

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

👀 Live Preview

See the Guarani sign (₲) in sample prices and compared with other currency symbols:

Sample prices ₲ 50.000   ₲ 1.250.000
With ISO code ₲ PYG   (Paraguayan Guarani)
Large glyph
Currency symbols ₲ guarani   € euro   ₩ won
Numeric refs &#x20B2; &#8370; \20B2

🧠 How It Works

1

Hexadecimal Code

&#x20B2; uses the Unicode hexadecimal value 20B2 to display the Guarani sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20B2 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 . Unicode U+20B2 is in Currency Symbols. Next: Gujarati Rupee Sign.

Use Cases

The Guarani Sign (₲) is commonly used in:

🛒 E-commerce

Product prices and checkout totals for Paraguayan markets (e.g. ₲ 50.000).

📄 Finance

Invoices, reports, and accounting documents in PYG.

🌐 Currency tools

Exchange-rate widgets and multi-currency converters.

🏦 Banking apps

Balances, transfers, and statements denominated in guaraníes.

📋 Listings

Classifieds and marketplaces targeting Paraguay.

🌐 i18n sites

Locale-aware pricing with correct currency glyphs.

💡 Best Practices

Do

  • Use &#x20B2; or &#8370; for the official ₲ symbol
  • Pair with locale-aware number formatting (e.g. thousands separators for PYG)
  • Add lang or ARIA labels for screen readers when needed
  • Test rendering across browsers and system fonts
  • Clarify currency in multi-currency UIs (₲ vs € vs $)

Don’t

  • Use plain G or Gs when the Unicode symbol is required
  • Confuse U+20B2 (₲) with U+20B5 (₵, Ghana cedi)
  • Expect a named HTML entity for the Guarani sign
  • Use CSS \20B2 in HTML text nodes
  • Rely on fonts that omit Currency Symbols without a fallback

Key Takeaways

1

Two HTML numeric references plus CSS insert U+20B2

&#x20B2; &#8370;
2

For CSS, use \20B2 in the content property

3

Unicode U+20B2 — GUARANI SIGN (Paraguay, PYG)

4

No named entity—use hex, decimal, or CSS escape

❓ Frequently Asked Questions

Use &#x20B2; (hex), &#8370; (decimal), or \20B2 in CSS content. There is no named entity. All three methods render the Guarani sign (₲) correctly.
U+20B2 (GUARANI SIGN). Currency Symbols block. Hex 20B2, decimal 8370. Official symbol for the Paraguayan Guarani (PYG).
In e-commerce for Paraguay, financial documents, banking apps, currency converters, product listings, and any content that displays amounts in Paraguayan Guarani.
HTML references (&#8370; or &#x20B2;) go in markup. The CSS escape \20B2 is used in stylesheets, typically on ::before or ::after. Both produce ₲.
Named entities cover common characters; many currency symbols use numeric hex or decimal codes or CSS escapes. That is standard for U+20B2, unlike &euro; for the euro.

Explore More HTML Entities!

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