HTML Entity for Cada Una (℆)

What You'll Learn
How to display the Cada Una (℆) in HTML using numeric references and CSS escapes. This character is U+2106 (CADA UNA) in the Letterlike Symbols block (U+2100–U+214F), approved in Unicode 1.1 (1993). It is a Spanish abbreviation for cada una (“each one”)—visually c/u with a slash between the letters.
In Spanish pricing, it marks per-unit cost (e.g. 4 € ℆ = four euros each), comparable to writing ea. on English price tags. Unicode decomposes it as c + / + u. There is no named HTML entity; use ℆, ℆, or \2106 in CSS.
⚡ Quick Reference — Cada Una
U+2106Letterlike Symbols block
℆Hexadecimal reference
℆Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+2106
Hex code ℆
HTML code ℆
Named entity —
CSS code \2106Complete HTML Example
This example shows U+2106 using hexadecimal and decimal references plus a CSS content escape, including a Spanish pricing line. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2106";
}
</style>
</head>
<body>
<p>Cada Una using Hexa Decimal: ℆</p>
<p>Cada Una using HTML Code: ℆</p>
<p id="point">Cada Una using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2106 is widely supported in modern browsers; rendering depends on font coverage of Letterlike Symbols:
👀 Live Preview
See the Cada Una symbol in pricing and reference contexts:
🧠 How It Works
Hexadecimal Code
℆ references code point U+2106 using hex digits 2106.
Decimal HTML Code
℆ is the decimal equivalent (8454) for the same CADA UNA character.
CSS Entity
\2106 is the CSS escape for U+2106, used in the content property of ::before or ::after.
Same visual result
All three methods produce the Cada Una glyph: ℆. Letterlike Symbols block (U+2100–U+214F). Decomposition: c + / + u.
Use Cases
The Cada Una (℆) commonly appears in:
Per-item prices and catalogs (e.g. 4 € ℆ = four euros each).
Product listings, price tags, and inventory in Spanish-speaking markets.
Spanish-language pages and Latin American retail content.
Restaurant menus, wholesale lists, and per-unit pricing displays.
Financial documents, price lists, and per-item cost breakdowns.
Correct rendering of the c/u abbreviation in typeset Spanish content.
Pair with text or aria-label (e.g. “cada una” or “per item”).
💡 Best Practices
Do
- Place ℆ after the price:
4€ ℆ - Use
℆or℆consistently in markup - Add
aria-label="cada una"on price elements when helpful - Set
lang="es"on Spanish pricing sections - Declare
<meta charset="utf-8">for reliable rendering
Don’t
- Confuse ℆ with the at sign @ (different meaning and code point)
- Expect a named HTML entity—none exists for U+2106
- Use CSS escape
\2106inside HTML text nodes - Rely on the symbol alone without accessible per-item context
- Mix entity styles randomly in one file
Key Takeaways
Two numeric references render ℆
℆ ℆CSS content escape
\2106U+2106 CADA UNA — Letterlike Symbols block
Spanish abbreviation for cada una (each one), shown as c/u
Common in Spanish e-commerce and per-unit pricing displays
❓ Frequently Asked Questions
℆ (hex), ℆ (decimal), or \2106 in CSS content. There is no named entity.U+2106 (CADA UNA). Letterlike Symbols block (U+2100–U+214F). Hex 2106, decimal 8454. Abbreviation for cada una (each one).\2106 belongs in stylesheets, typically in the content property of pseudo-elements. Both produce ℆.℆, ℆, or \2106 in CSS depending on whether you are authoring markup or styles.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
