HTML Entity for Account Of (℀)

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

What You'll Learn

How to display the Account Of symbol (℀) in HTML using numeric character references. This glyph is the standard typographic abbreviation for “account of” and appears in accounting, legal, and formal documents.

The character lives in the Letterlike Symbols Unicode block (U+2100). There is no named HTML entity for ℀, so you use ℀ or ℀ in markup, or \2100 in CSS content on pseudo-elements.

⚡ Quick Reference — Account Of Entity

Unicode U+2100

Letterlike Symbols block

Hex Code ℀

Hexadecimal reference

HTML Code ℀

Decimal reference

CSS Code \2100

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2100
Hex code       ℀
HTML code      ℀
Named entity   (none)
CSS code       \2100
1

Complete HTML Example

This example shows the Account Of symbol (℀) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2100";
  }
 </style>
</head>
<body>

<p>Account Of using Hexa Decimal: &#x2100;</p>
<p>Account Of using HTML Code: &#8448;</p>
<p id="point">Account Of using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric references for U+2100 are supported in all modern browsers. Final appearance depends on font coverage for the Letterlike Symbols block:

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

👀 Live Preview

See the Account Of symbol rendered in typical contexts:

Inline text Payment ℀ Jane Doe — reference line on an invoice.
Large glyph
Formal abbreviation Funds held ℀ the estate of…
Monospace REF: PAY-℀-2026-001
Font note If the primary font lacks Letterlike Symbols, the browser picks a fallback that includes ℀.

🧠 How It Works

1

Hexadecimal Code

&#x2100; references Unicode 2100 in hexadecimal. The x prefix marks a hex numeric character reference.

HTML markup
2

Decimal HTML Code

&#8448; is the decimal code point 8448 for the same character—often used when authors think in decimal Unicode values.

HTML markup
3

CSS Entity (Escape)

\2100 is the CSS escape (four hex digits) used in content on ::before / ::after to emit ℀ without placing the raw character in HTML.

CSS stylesheet
=

Same visual result

All methods render . Unicode is U+2100 (Letterlike Symbols, U+2100–U+214F). There is no standard named HTML entity; stick to numeric references or CSS escapes.

Use Cases

The Account Of symbol (℀) fits these kinds of content:

📄 Accounting Documents

Invoices, ledgers, and receipts where “account of” is abbreviated (e.g. Payment ℀ name).

📑 Legal & Formal Text

Contracts and deeds that use standard typographic abbreviations.

💳 Payment References

Bank transfers and remittance lines indicating the beneficiary or account context.

📋 Forms & Applications

Compact labels where the precomposed ℀ reads clearer than “a/c” or spelled-out text.

🏛️ Official Content

Government or institutional pages that follow traditional abbreviation conventions.

💻 Financial Software

Reports and UIs that must match printed accounting notation.

🎨 Typography & Design

When the single glyph looks more professional than informal shorthand.

💡 Best Practices

Do

  • Use UTF-8 and one numeric style (hex or decimal) consistently
  • Pair ℀ with visible context (“Payment ℀ …”) for clarity and accessibility
  • Prefer &#x2100; or &#8448; when generating HTML from code
  • Test with your real body and heading fonts for Letterlike coverage
  • Use \2100 only in CSS content, not inside HTML text nodes

Don’t

  • Assume every custom webfont includes U+2100
  • Use the symbol alone as the only label for a critical action
  • Mix hex and decimal references at random in one template
  • Paste CSS escapes into HTML markup (they belong in stylesheets)
  • Confuse ℀ with the commercial at @ or other letterlike symbols

Key Takeaways

1

Two HTML numeric references render ℀

&#x2100; &#8448;
2

In CSS, use the escape in content on pseudo-elements

\2100
3

Unicode U+2100 is in the Letterlike Symbols block (U+2100–U+214F)

4

There is no named HTML entity for this character—use numeric references

5

Explain the abbreviation on first use so readers and assistive tech understand ℀

❓ Frequently Asked Questions

Use &#x2100; (hex), &#8448; (decimal), or \2100 in CSS content. All produce ℀. There is no standard named entity.
U+2100 (hex 2100, decimal 8448). It abbreviates “account of” and sits in the Letterlike Symbols block.
In accounting and invoicing copy, legal or formal abbreviations, payment references, and anywhere the conventional ℀ glyph is expected instead of spelling out “account of”.
HTML numeric references (&#8448; or &#x2100;) go in markup. The CSS escape \2100 belongs in stylesheets, usually in the content property of ::before or ::after. Same glyph, different layers.
Named entities cover a limited set of characters. Letterlike symbols like ℀ are normally written with hex or decimal numeric references, which is what HTML and XML processors expect for this block.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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