Austral Sign

Shortcodes

Copy useful codes for austral sign ₳ to use in websites, apps, blogs, and docs.

Unicode
U+20B3
HTML Code
₳
HEX Code
₳
CSS Code
\20B3
JS/JSON
\u20B3
Unix/C/PHP/JAVA
0x20B3
URL-encode
%E2%82%B3

Customize Austral Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>₳</span>
HTML Code:
<span>&#8371;</span>
HEX Code:
<span>&#x20B3;</span>

Add with CSS

.austral-sign::before {
  content: '\\20B3';
}

Set it in JavaScript

document.querySelector('.austral-sign').textContent = '₳';
copied