HTML Entity for Cada Una (℆)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2106

What Is the Cada Una Entity?

Cada Una (℆) is the Unicode character at U+2106 in the Letterlike Symbols block (official name: CADA UNA). It stands for Spanish cada una (“each one”) and often appears in price or unit labels as a compact c/u-style mark.

Remember
Character     ℆
Unicode       U+2106
Hex entity    ℆
Decimal       ℆
CSS escape    \2106
Named entity  (none)

All of these produce the same glyph: ℆. Prefer the Unicode character when you need that exact letterlike form; use plain text c/u or spell out “each” when the symbol is unclear or unsupported.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character℆HTML text (UTF-8)
Hex entity℆HTML markup
Decimal entity℆HTML markup
CSS escape\2106Stylesheet content
Named entity—Not defined in HTML5

When to use which

SituationUse
Need the cada una glyph ℆Type ℆, or ℆ / ℆
Generated text via ::before / ::aftercontent: "\2106"
English “care of”Use ℅ (U+2105)
Symbol missing in a fontWrite c/u or “each / per unit”
Looking for &cadauna; or similarDoes not exist — use numeric form

Live Preview

Cada Una rendered in common writing contexts.

Inline text Price: $2.50 ℆
Large glyph ℆
Compared ℅   ℆   c/u
Monospace unit: ℆ → each
With entities Hex: ℆ | Decimal: ℆

Complete HTML Example

One page that shows Cada Una with the hex entity, decimal entity, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

All four ways to produce ℆ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Cada Una (℆) in HTML</title>
  <style>
    #point::after {
      content: "\2106";
    }
  </style>
</head>
<body>
  <p>Cada Una using Hex Code: &#x2106;</p>
  <p>Cada Una using HTML Code: &#8454;</p>
  <p id="point">Cada Una using CSS Entity: </p>
  <p>Typed directly: ℆</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2106 → &#x2106; in HTML. The browser turns it into ℆.

2. Decimal: same code point as 8454 → &#8454;. Same result as hex.

3. CSS: use \2106 in content (not an HTML entity). #point::after appends that ℆ after the paragraph text.

4. Typed ℆: fine in UTF-8 pages. All four lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with Cada Una entities.

Named?

No named entity

HTML5 does not define &cadauna; or similar. Use numeric forms.

CSS vs HTML

Do not mix escapes

\2106 belongs in CSS. &#x2106; / &#8454; belong in HTML.

℆ vs ℅

Different characters

℆ is U+2106 (cada una). Care of ℅ is U+2105.

Fonts

Check the glyph

Letterlike Symbols coverage varies. If ℆ is missing, fall back to c/u or “each.”

Semicolon

End references

Always finish with ; — write &#8454;, not &#8454.

Audience

Add context

Readers outside Spanish markets may not know ℆. Label prices as “each” on first use when needed.

Browser Support

Cada Una (U+2106) and its numeric entity forms (&#x2106;, &#8454;, CSS \\2106) are supported in all mainstream browsers. Glyph shape depends on the font.

✓ Universal support

Cada Una (℆)

Encode with hex, decimal, or CSS escape — or paste ℆ in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2106 / entities Full support

Bottom line: Use &#x2106; or &#8454; for the Unicode glyph, and \\2106 only inside CSS content. Prefer ℅ for “care of,” not ℆.

Key Takeaways

  • Unicode: cada una is U+2106 (decimal 8454).
  • HTML: use &#x2106; or &#8454; when you need an entity.
  • CSS: use \2106 inside content for generated text.
  • Watch out: ℆ ≠ ℅ (cada una ≠ care of).

One line: U+2106 → &#x2106; / &#8454; / CSS \2106, or paste ℆.

Frequently Asked Questions

Use &#x2106; (hex), &#8454; (decimal), or the CSS escape \2106 in the content property. All render ℆. You can also paste ℆ directly when your file is UTF-8.
U+2106 (hex 2106, decimal 8454). Unicode names it CADA UNA. It belongs to the Letterlike Symbols block.
No. HTML5 does not define a named entity for ℆. Use numeric references like &#x2106; or &#8454;.
℆ (U+2106) means cada una (each / per item). ℅ (U+2105) means care of. They look similar but are different characters.
HTML entities (&#8454; or &#x2106;) go in markup. The CSS escape \2106 is used in stylesheets (usually in the content property of ::before/::after). Both render ℆.
Use it for Spanish or multilingual price labels meaning “each” or “per unit.” For English “care of,” use ℅ (U+2105). Plain text “c/u” is fine when the symbol is unavailable.

Did you know?

Cada una is Unicode U+2106 (decimal 8454) — official name CADA UNA in the Letterlike Symbols block. HTML5 has no named entity. It abbreviates Spanish “cada una” (each one / per item) and is not care of (U+2105 ℅).

Next: Caduceus

Learn the HTML entity for caduceus (☤) — the winged staff symbol.

Caduceus tutorial →

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