Guarani Sign

Shortcodes

Copy useful codes for guarani sign ₲ to use in websites, apps, blogs, and docs.

Unicode
U+20B2
HTML Code
₲
HEX Code
₲
CSS Code
\20B2
JS/JSON
\u20B2
Unix/C/PHP/JAVA
0x20B2
URL-encode
%E2%82%B2

Customize Guarani Sign

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

  

How to use Guarani Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₲</span>
HTML Code:
<span>&#8370;</span>
HEX Code:
<span>&#x20B2;</span>

Add with CSS

.guarani-sign::before {
  content: '\\20B2';
}

Set it in JavaScript

document.querySelector('.guarani-sign').textContent = '₲';
copied