HTML Entity for German Penny Symbol (₰)

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

What You'll Learn

How to display the German Penny symbol (₰) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20B0 (GERMAN PENNY SIGN) in the Currency Symbols block (U+20A0–U+20CF)—used for the historical German Pfennig in numismatic and vintage content.

Render it with ₰, ₰, or CSS escape \20B0. There is no named HTML entity. Pair with “Pfennig” or explanatory text for clarity and accessibility.

⚡ Quick Reference — German Penny Symbol

Unicode U+20B0

Currency Symbols

Hex Code ₰

Hexadecimal reference

HTML Code ₰

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20B0
Hex code       ₰
HTML code      ₰
Named entity   (none)
CSS code       \20B0
Meaning        German penny / Pfennig (historical)
Related        € = Euro (€); see Currency entities
1

Complete HTML Example

This example demonstrates the German Penny symbol (₰) 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: "\20B0";
  }
 </style>
</head>
<body>
<p>German Penny using Hexadecimal: &#x20B0;</p>
<p>German Penny using Decimal: &#8368;</p>
<p id="point">German Penny using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The German Penny symbol (₰) is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the German Penny symbol (₰) in historical and numismatic contexts:

Historical price 12 ₰ 75 (12 Pfennig, 75)
Coin catalog 1918 Pfennig ₰ — Mint state
Large glyph
vs Euro ₰ (Pfennig, historical) • € (Euro, &euro;)
Numeric refs &#x20B0; &#8368; \20B0

🧠 How It Works

1

Hexadecimal Code

&#x20B0; uses the Unicode hexadecimal value 20B0 to display the German Penny sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20B0 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+20B0 is in Currency Symbols (U+20A0–U+20CF). Next: Gimel Symbol (ℷ).

Use Cases

The German Penny symbol (₰) is commonly used in:

📜 Historical currency

Content about the German Pfennig, pre-euro German money, and monetary history.

🪙 Numismatics

Coin catalogs, collector sites, and references to Pfennig coins.

🎨 Vintage design

Period-accurate or vintage-themed layouts and price displays.

📄 Education

Material on currency symbols and historical finance.

📚 Symbol references

HTML entity lists and currency symbol documentation.

🏛 Museums

Exhibition or archive pages referencing historical German currency.

💡 Best Practices

Do

  • Pair ₰ with “Pfennig” or context for readers and screen readers
  • Use &#8368; or &#x20B0; consistently (no named entity)
  • Verify font support for Currency Symbols (U+20B0)
  • Use the CSS escape in ::before / ::after for decorative headers
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use ₰ for modern Euro prices—use &euro; (€) instead
  • Expect a named entity—none exists for U+20B0
  • Put CSS escape \20B0 in HTML text nodes
  • Rely on the symbol alone without accessible text
  • Skip font checks on older systems for currency glyphs

Key Takeaways

1

Two HTML numeric references plus CSS render ₰

&#x20B0; &#8368;
2

For CSS stylesheets, use the escape in the content property

\20B0
3

Unicode U+20B0 — GERMAN PENNY SIGN (Pfennig)

4

Currency Symbols block (U+20A0–U+20CF)

❓ Frequently Asked Questions

Use &#x20B0; (hex), &#8368; (decimal), or \20B0 in CSS content. There is no named entity for the German Penny symbol (₰).
U+20B0 (GERMAN PENNY SIGN). Currency Symbols block. Hex 20B0, decimal 8368. No named HTML entity.
In historical currency references, numismatic content, vintage or period design, museum pages, and any content referring to the German Pfennig.
HTML references (&#8368; or &#x20B0;) go in markup. The CSS escape \20B0 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover a subset of currency symbols (e.g. &euro; for €). U+20B0 has no named entity—use numeric codes in markup or \20B0 in CSS.

Explore More HTML Entities!

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