HTML Entity for Per Mille (‰)

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

What You'll Learn

How to display the Per Mille sign (‰) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2030 (PER MILLE SIGN) in the General Punctuation block (U+2000–U+206F)—used for rates and ratios expressed per 1,000 (parts per thousand).

Render it with ‰, ‰, the named entity ‰, or CSS escape \2030. Do not confuse ‰ with U+2031 (‱, per ten thousand, ‱) or the percent sign % (U+0025, %)—each represents a different scale.

⚡ Quick Reference — Per Mille

Unicode U+2030

General Punctuation (U+2000–U+206F)

Hex Code ‰

Hexadecimal reference

HTML Code ‰

Decimal reference

Named Entity ‰

Standard HTML named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2030
Hex code       ‰
HTML code      ‰
Named entity   ‰
CSS code       \2030
Meaning        Parts per thousand (per mille)
Example        5‰ rate
Related        U+2031 = per ten thousand (‱, ‱)
               U+0025 = percent sign (%, %)
Block          General Punctuation (U+2000–U+206F)
1

Complete HTML Example

A simple example showing ‰ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2030";
  }
 </style>
</head>
<body>
<p>Per mille (hex): &#x2030;</p>
<p>Per mille (decimal): &#8240;</p>
<p>Per mille (named): &permil;</p>
<p>Rate: 5&permil;</p>
<p id="point">Per mille (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Per Mille sign (‰) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Per Mille sign (‰) in financial and statistical contexts:

Single symbol
Rate example 5‰ annual rate
Named entity &permil; renders as ‰
Not the same as Per ten thousand ‱  |  Percent %
Numeric refs &#x2030; &#8240; &permil; \2030

🧠 How It Works

1

Hexadecimal Code

&#x2030; uses the Unicode hexadecimal value 2030 to display the per mille symbol.

HTML markup
2

Decimal HTML Code

&#8240; uses the decimal Unicode value 8240 for the same character.

HTML markup
3

Named Entity

&permil; is the standard HTML named entity for U+2030—readable and widely supported.

HTML markup
4

CSS Entity

\2030 is used in CSS stylesheets in the content property of pseudo-elements for decorative markers.

CSS stylesheet
=

Per mille result

All four methods render . Unicode U+2030 in General Punctuation. Next: Percent Sign (%).

Use Cases

The Per Mille sign (‰) is commonly used in:

💰 Finance

Interest rates, fee tables, and parts-per-thousand financial reporting.

📊 Statistics

Rates per 1,000 in research papers, dashboards, and data tables.

🛡 Insurance

Actuarial content, mortality rates, and risk documentation.

📄 Reports

Annual reports, regulatory filings, and compliance web pages.

📋 Unicode references

Character pickers, entity documentation, and symbol guides.

♿ Accessibility

Pair ‰ with context like “per thousand” so screen readers convey meaning.

💡 Best Practices

Do

  • Prefer &permil; in HTML for readability when a named entity fits
  • Use &#x2030; or &#8240; when you need numeric references
  • Include numeric context (e.g. “5‰”) so the rate is clear
  • Set <meta charset="utf-8"> for reliable rendering
  • Distinguish ‰ from per ten thousand ‱ and percent %

Don’t

  • Use &#x89; or &#137;—those are not per mille (correct: &#x2030;, &#8240;)
  • Confuse ‰ with per ten thousand ‱ or percent %
  • Use padded Unicode notation like U+02030—the correct value is U+2030
  • Use CSS escape \2030 in HTML text nodes
  • Assume every audience recognizes ‰ without explanatory text

Key Takeaways

1

Four ways to render U+2030 in web content

&#x2030; &#8240; &permil;
2

For CSS stylesheets, use \2030 in the content property

3

Unicode U+2030 — PER MILLE SIGN (parts per thousand)

4

Distinct from per ten thousand ‱ and percent % (&percnt;)

❓ Frequently Asked Questions

Use &#x2030; (hex), &#8240; (decimal), &permil; (named entity), or \2030 in CSS content. All four render ‰.
U+2030 (PER MILLE SIGN). General Punctuation block (U+2000–U+206F). Hex 2030, decimal 8240, named entity permil.
No. ‰ (U+2030) is PER MILLE SIGN (parts per thousand). % (U+0025) is PERCENT SIGN (&percnt;, parts per hundred). They are different characters at different scales.
For financial rates per 1,000, statistical notation, insurance and actuarial content, and any page that needs the ‰ symbol instead of spelling out “per mille” or “per thousand.”
&permil; is the HTML named entity for U+2030 (per mille / parts per thousand). It renders as ‰ and is often the most readable choice in HTML markup.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, and more.

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