HTML Entity for Care Of (℅)

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

What You'll Learn

How to display the Care Of (℅) in HTML using various entity methods. This character is U+2105 (CARE OF) in the Letterlike Symbols block (U+2100–U+214F), approved in Unicode 1.1 (1993). It abbreviates care of (c/o)—used when mail or documents should reach someone via an intermediary.

For example, John Doe ℅ Jane Smith means John Doe, care of Jane Smith. You can render it with ℅, ℅, the named entity ℅, or \2105 in CSS. Do not confuse ℅ with Cada Una (, U+2106), the Spanish “each one” symbol.

⚡ Quick Reference — Care Of

Unicode U+2105

Letterlike Symbols block

Hex Code ℅

Hexadecimal reference

HTML Code ℅

Decimal reference

Named Entity ℅

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2105
Hex code       ℅
HTML code      ℅
Named entity   ℅
CSS code       \2105
1

Complete HTML Example

This example demonstrates the Care Of (℅) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2105";
  }
 </style>
</head>
<body>
<p>Care Of using Hexa Decimal: &#x2105;</p>
<p>Care Of using HTML Code: &#8453;</p>
<p>Care Of using HTML Entity: &incare;</p>
<p id="point">Care Of using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Care Of entity is universally supported in all modern browsers:

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

👀 Live Preview

See the Care Of symbol in address and reference contexts:

Mailing address John Doe ℅ Jane Smith
123 Main Street
Large glyph
vs Cada Una Care of: ℅ (U+2105)   Each one: ℆ (U+2106)
Plain text alt John Doe c/o Jane Smith (also acceptable)
Monospace refs &#x2105; &#8453; &incare; \2105

🧠 How It Works

1

Hexadecimal Code

&#x2105; uses the Unicode hexadecimal value 2105 to display the Care Of symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&incare; is the semantic named entity—the most readable option for care-of notation in HTML source.

HTML markup
4

CSS Entity

\2105 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Care Of glyph: . Unicode U+2105 sits in the Letterlike Symbols block (U+2100–U+214F).

Use Cases

The Care Of (℅) commonly appears in:

📬 Addresses

Mailing addresses, envelopes, and labels when delivery is via an intermediary.

📄 Business documents

Invoices, contracts, and formal correspondence with care-of notation.

✉ Formal letters

Legal notices, official communications, and letterhead layouts.

🏢 Corporate mail

Company addresses, department routing, and institutional correspondence.

📋 Forms

Applications, registrations, and documents with alternate contact routing.

🌐 Contact pages

Website address blocks, contact forms, and location listings.

♿ Accessibility

Pair with text or aria-label="care of" so screen readers announce meaning.

💡 Best Practices

Do

  • Use &incare; for readable source markup
  • Format as: Recipient ℅ Intermediary (e.g. John Doe ℅ Jane Smith)
  • Wrap postal addresses in semantic <address> elements
  • Add aria-label="care of" when the symbol stands alone in UI
  • Declare <meta charset="utf-8"> for reliable rendering

Don’t

  • Confuse ℅ (care of) with ℆ (cada una / each one)
  • Use CSS escape \2105 inside HTML text nodes
  • Rely on the symbol alone without accessible “care of” context
  • Mix entity styles randomly in one file
  • Assume postal services require ℅ over plain “c/o” text

Key Takeaways

1

Three HTML references all render ℅

&#x2105; &#8453; &incare;
2

For CSS stylesheets, use the escape in the content property

\2105
3

U+2105 CARE OF — Letterlike Symbols block

4

Means care of (c/o) when mail goes via an intermediary

5

Prefer &incare; for readability in HTML source

❓ Frequently Asked Questions

Use &#x2105; (hex), &#8453; (decimal), &incare; (named), or \2105 in CSS content. All produce ℅.
U+2105 (CARE OF). Letterlike Symbols block (U+2100–U+214F). Hex 2105, decimal 8453. Abbreviation for care of in postal addresses.
For mailing addresses, business documents, formal letters, mailing labels, legal notices, and contact pages when delivery is via an intermediary.
HTML entities (&#8453;, &#x2105;, or &incare;) go directly in markup. The CSS escape \2105 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &incare; is the named HTML entity for ℅. You can also use &#8453; (decimal) or &#x2105; (hex).

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