HTML Entity for Addressed To Subject (℁)

What You'll Learn
How to display the addressed to subject symbol (℁) in HTML using numeric character references. Unicode names this character Addressed to the Subject; it is a letterlike abbreviation used in formal correspondence and subject lines.
The character lives in the Letterlike Symbols Unicode block (U+2101). There is no named HTML entity for ℁, so you use ℁ or ℁ in markup, or \2101 in CSS content on pseudo-elements.
⚡ Quick Reference — Addressed To Subject Entity
U+2101Letterlike Symbols block
℁Hexadecimal reference
℁Decimal reference
\2101Use in CSS content
Name Value
──────────── ──────────
Unicode U+2101
Hex code ℁
HTML code ℁
Named entity (none)
CSS code \2101Complete HTML Example
This example shows the addressed to subject symbol (℁) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2101";
}
</style>
</head>
<body>
<p>Addressed To Subject using Hexa Decimal: ℁</p>
<p>Addressed To Subject using HTML Code: ℁</p>
<p id="point">Addressed To Subject using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Numeric references for U+2101 are supported in all modern browsers. Final appearance depends on font coverage for the Letterlike Symbols block:
👀 Live Preview
See the addressed to subject symbol rendered in typical contexts:
🧠 How It Works
Hexadecimal Code
℁ references Unicode 2101 in hexadecimal. The x prefix marks a hex numeric character reference.
Decimal HTML Code
℁ is the decimal code point 8449 for the same character—often used when authors think in decimal Unicode values.
CSS Entity (Escape)
\2101 is the CSS escape (four hex digits) used in content on ::before / ::after to emit ℁ without placing the raw character in HTML.
Same visual result
All methods render ℁. Unicode is U+2101 (Letterlike Symbols, U+2100–U+214F). There is no standard named HTML entity; stick to numeric references or CSS escapes.
Use Cases
The addressed to subject symbol (℁) fits these kinds of content:
Formal correspondence where the standard letterlike abbreviation replaces spelled-out “addressed to the subject”.
Filings, notices, and templates that follow traditional typography for routing or subject blocks.
Rare but valid when reproducing legacy notation or style guides that specify this glyph.
Digitized paper forms that preserve the original abbreviation for fidelity.
Archives or intranets mirroring printed correspondence conventions.
Educational pages demonstrating Letterlike Symbols alongside ℀, ℃, and similar characters.
When a single glyph matches brand or print guidelines better than plain words.
💡 Best Practices
Do
- Use UTF-8 and one numeric style (hex or decimal) consistently
- Pair ℁ with visible context so readers understand the abbreviation
- Prefer
℁or℁when generating HTML from code - Test with your real body and heading fonts for Letterlike coverage
- Use
\2101only in CSScontent, not inside HTML text nodes
Don’t
- Assume every custom webfont includes U+2101
- 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 ℀ (account of, U+2100) or other letterlike symbols
Key Takeaways
Two HTML numeric references render ℁
℁ ℁In CSS, use the escape in content on pseudo-elements
\2101Unicode U+2101 is in the Letterlike Symbols block (U+2100–U+214F)
There is no named HTML entity for this character—use numeric references
Explain the abbreviation on first use so readers and assistive tech understand ℁
❓ Frequently Asked Questions
℁ (hex), ℁ (decimal), or \2101 in CSS content. All produce ℁. There is no standard named entity.U+2101 (hex 2101, decimal 8449). Unicode names it Addressed to the Subject; it sits in the Letterlike Symbols block.℁ or ℁) go in markup. The CSS escape \2101 belongs in stylesheets, usually in the content property of ::before or ::after. Same glyph, different layers.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
