HTML Entity for Mill Sign (₥)

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

What You'll Learn

How to display the mill sign (₥) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20A5 (MIL SIGN) in the Currency Symbols block (U+20A0–U+20CF)—a currency-related glyph distinct from everyday math or unit symbols.

Render it with ₥, ₥, or CSS escape \20A5. There is no named HTML entity. Do not confuse ₥ with per mille ‰ (U+2030, ‰) or the minus sign − (U+2212)—each is a different character.

⚡ Quick Reference — Mill Sign

Unicode U+20A5

Currency Symbols

Hex Code ₥

Hexadecimal reference

HTML Code ₥

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20A5
Hex code       ₥
HTML code      ₥
Named entity   (none)
CSS code       \20A5
Meaning        Mil sign (currency symbol)
Related        U+2030 = per mille (‰, ‰)
               U+2212 = minus sign (−)
1

Complete HTML Example

This example demonstrates the mill sign (₥) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\20A5";
  }
 </style>
</head>
<body>
<p>Mill Sign using Hexadecimal: &#x20A5;</p>
<p>Mill Sign using HTML Code: &#8357;</p>
<p id="point">Mill Sign using CSS Entity: </p>
<p>Symbol: &#x20A5; (mil sign)</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The mill sign is widely supported in modern browsers:

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

👀 Live Preview

See the mill sign (₥) in currency and reference contexts:

Symbol ₥ mil sign
Large glyph
vs per mille ₥ mil sign   ‰ per mille
Numeric refs &#x20A5; &#8357;
CSS escape \20A5

🧠 How It Works

1

Hexadecimal Code

&#x20A5; uses the Unicode hexadecimal value 20A5 to display the mill sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20A5 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for currency labels.

CSS stylesheet
=

Same visual result

All three methods produce: (₥). Unicode U+20A5 sits in the Currency Symbols block (U+20A0–U+20CF). No named HTML entity—use numeric codes in markup.

Use Cases

The mill sign (₥) is commonly used in:

💰 Currency

Historical mil currency notation and numismatic references.

📚 Education

Unicode and typography courses covering currency symbols.

📝 Typography

Font specimen sheets and symbol reference charts.

📰 Publishing

Academic and archival content on currency history.

💻 Technical docs

Character-set documentation and encoding guides.

📄 Reference guides

HTML entity tutorials and Unicode symbol documentation.

💡 Best Practices

Do

  • Use &#x20A5; or &#8357; consistently per project
  • Distinguish ₥ from per mille ‰ (&permil;)
  • Pair with accessible text describing the symbol when needed
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Test currency glyph rendering across browsers and font stacks

Don’t

  • Call ₥ “per mille” — that is ‰ (U+2030)
  • Use ₥ when you mean minus − or micro µ
  • Put CSS escape \20A5 in HTML text nodes
  • Use HTML entities in JS (use \u20A5)
  • Use padded Unicode notation like U+020A5—the correct value is U+20A5

Key Takeaways

1

Two HTML references both render ₥

&#x20A5; &#8357;
2

For CSS stylesheets, use the escape in the content property

\20A5
3

Unicode U+20A5 — MIL SIGN in Currency Symbols

4

No named HTML entity—use numeric codes or UTF-8 literal ₥

5

Not the same as per mille ‰ (U+2030, &permil;)

❓ Frequently Asked Questions

Use &#x20A5; (hex), &#8357; (decimal), or \20A5 in CSS content. All produce ₥. There is no named HTML entity for U+20A5.
U+20A5 (MIL SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20A5, decimal 8357.
For historical currency notation, typography references, Unicode documentation, and content that requires the mil currency symbol glyph.
No. ₥ is U+20A5 (MIL SIGN), a currency symbol. ‰ is U+2030 (PER MILLE SIGN, &permil;), meaning parts per thousand. They are different characters.
HTML references (&#8357; or &#x20A5;) go directly in markup. The CSS escape \20A5 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, math, and notation.

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