Mill Sign

Shortcodes

Copy useful codes for mill sign ₥ to use in websites, apps, blogs, and docs.

Unicode
U+20A5
HTML Code
₥
HEX Code
₥
CSS Code
\20A5
JS/JSON
\u20A5
Unix/C/PHP/JAVA
0x20A5
URL-encode
%E2%82%A5

Customize Mill Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>₥</span>
HTML Code:
<span>&#8357;</span>
HEX Code:
<span>&#x20A5;</span>

Add with CSS

.mill-sign::before {
  content: '\\20A5';
}

Set it in JavaScript

document.querySelector('.mill-sign').textContent = '₥';
copied