HTML Entity for Per Ten Thousand (‱)

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

What You'll Learn

How to display the Per Ten Thousand sign (‱) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2031 (PER TEN THOUSAND SIGN, also called permyriad) in the General Punctuation block (U+2000–U+206F)—used for rates and ratios expressed per 10,000.

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

⚡ Quick Reference — Per Ten Thousand

Unicode U+2031

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+2031
Hex code       ‱
HTML code      ‱
Named entity   ‱
CSS code       \2031
Also called    Permyriad
Example        1.25‱ rate
Related        U+2030 = per mille (‰, ‰)
               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: "\2031";
  }
 </style>
</head>
<body>
<p>Per ten thousand (hex): &#x2031;</p>
<p>Per ten thousand (decimal): &#8241;</p>
<p>Per ten thousand (named): &pertenk;</p>
<p>Rate: 1.25&pertenk;</p>
<p id="point">Per ten thousand (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Per Ten Thousand sign (‱) is widely supported in all modern browsers:

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

👀 Live Preview

See the Per Ten Thousand sign (‱) in financial and statistical contexts:

Single symbol
Rate example 1.25‱ annual rate
Named entity &pertenk; renders as ‱
Not the same as Per mille ‰ (&permil;)  |  Percent %
Numeric refs &#x2031; &#8241; &pertenk; \2031

🧠 How It Works

1

Hexadecimal Code

&#x2031; uses the Unicode hexadecimal value 2031 to display the permyriad symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Per ten thousand result

All four methods render . Unicode U+2031 in General Punctuation. Next: Per Mille (‰).

Use Cases

The Per Ten Thousand sign (‱) is commonly used in:

💰 Finance

Interest rates, fee tables, and permyriad-style financial reporting.

📊 Statistics

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

🛡 Insurance

Actuarial content, mortality tables, and risk-rate 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 10,000” so screen readers convey meaning.

💡 Best Practices

Do

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

Don’t

  • Confuse ‱ with per mille ‰ (&permil;) or percent %
  • Use padded Unicode notation like U+02031—the correct value is U+2031
  • Use CSS escape \2031 in HTML text nodes
  • Assume every audience recognizes ‱ without explanatory text
  • Mix permyriad and basis-point notation without defining your scale

Key Takeaways

1

Four ways to render U+2031 in web content

&#x2031; &#8241; &pertenk;
2

For CSS stylesheets, use \2031 in the content property

3

Unicode U+2031 — PER TEN THOUSAND SIGN (permyriad)

4

Distinct from per mille ‰ (&permil;) and percent %

5

Previous: Pencil (✏)   Next: Per Mille (‰)

❓ Frequently Asked Questions

Use &#x2031; (hex), &#8241; (decimal), &pertenk; (named entity), or \2031 in CSS content. All four render ‱.
U+2031 (PER TEN THOUSAND SIGN). General Punctuation block (U+2000–U+206F). Hex 2031, decimal 8241, named entity pertenk.
No. ‱ (U+2031) is PER TEN THOUSAND SIGN (permyriad). ‰ (U+2030) is PER MILLE SIGN (&permil;), meaning parts per thousand. They are different characters at different scales.
For financial rates per 10,000, statistical permyriad notation, insurance and actuarial content, and any page that needs the ‱ symbol instead of spelling out “per 10,000.”
&pertenk; is the HTML named entity for U+2031 (per ten thousand / permyriad). 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