German Penny Sign

Shortcodes

Copy useful codes for german penny sign ₰ to use in websites, apps, blogs, and docs.

Unicode
U+20B0
HTML Code
₰
HEX Code
₰
CSS Code
\20B0
JS/JSON
\u20B0
Unix/C/PHP/JAVA
0x20B0
URL-encode
%E2%82%B0

Customize German Penny Sign

Customize ₰, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use German Penny Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₰</span>
HTML Code:
<span>&#8368;</span>
HEX Code:
<span>&#x20B0;</span>

Add with CSS

.german-penny-sign::before {
  content: '\\20B0';
}

Set it in JavaScript

document.querySelector('.german-penny-sign').textContent = '₰';
copied