HTML Entity for Recycling Symbol Generic Materials (♺)

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

What You'll Learn

How to display the Recycling Symbol for Generic Materials (♺) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+267A (RECYCLING SYMBOL FOR GENERIC MATERIALS) in the Miscellaneous Symbols block (U+2600–U+26FF)—used for general recyclable materials on eco-friendly websites and sustainability content.

Render it with ♺, ♺, or CSS escape \267A. There is no named HTML entity. Do not confuse ♺ with U+267B (♻, universal recycling), U+2678 (♸, type-6 plastics), or resin-specific marks like U+2673 (type-1 plastics).

⚡ Quick Reference — Generic Materials Symbol

Unicode U+267A

Miscellaneous Symbols (U+2600–U+26FF)

Hex Code ♺

Hexadecimal reference

HTML Code ♺

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+267A
Hex code       ♺
HTML code      ♺
Named entity   (none)
CSS code       \267A
Meaning        Generic recyclable materials mark
Related        U+267B = universal recycling (♻)
               U+2678 = type-6 plastics (♸)
               U+2673 = type-1 plastics (♳)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing ♺ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\267A";
  }
 </style>
</head>
<body>
<p>Generic materials (hex): &#x267A;</p>
<p>Generic materials (decimal): &#9850;</p>
<p id="point">Generic materials (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Generic Materials recycling symbol (♺) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Generic Materials recycling symbol (♺) in sustainability contexts:

Single symbol
Product label ♺ Recyclable materials
Eco section ♺ Sustainability & recycling
Not the same as Universal ♻  |  Type 6 ♸  |  Recycled paper ♼
Numeric refs &#x267A; &#9850; \267A

🧠 How It Works

1

Hexadecimal Code

&#x267A; uses the Unicode hexadecimal value 267A to display the generic materials recycling symbol.

HTML markup
2

Decimal HTML Code

&#9850; uses the decimal Unicode value 9850 for the same character.

HTML markup
3

CSS Entity

\267A is used in CSS stylesheets in the content property of pseudo-elements for icons or labels.

CSS stylesheet
=

Recycling symbol result

All three methods render . Unicode U+267A in Miscellaneous Symbols. Next: Recycling Symbol Type 1 Plastics.

Use Cases

The Generic Materials recycling symbol (♺) is commonly used in:

🌳 Eco websites

Sustainability pages, green branding, and environmental campaigns.

📦 Product labels

General recyclable materials markings on packaging and products.

📝 Recycling guides

Mixed-material or unspecified recycling instructions online.

🌱 Green initiatives

Non-profit sites, CSR reports, and eco-certification pages.

📋 Unicode references

Character pickers, entity documentation, and symbol guides.

♿ Accessibility

Pair ♺ with visible text; add aria-label when used as an icon.

💡 Best Practices

Do

  • Use &#x267A; or &#9850; for inline generic recycling symbols
  • Include clear recycling text alongside the symbol
  • Set <meta charset="utf-8"> for reliable rendering
  • Use the correct symbol—♺ for generic materials, not universal ♻
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ♺ with universal recycling ♻ or resin-specific marks
  • Use padded Unicode notation like U+0267A—the correct value is U+267A
  • Use CSS escape \267A in HTML text nodes
  • Rely on ♺ alone without explanatory text for accessibility
  • Assume every font renders Miscellaneous Symbols identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+267A

&#x267A; &#9850;
2

For CSS stylesheets, use \267A in the content property

3

Unicode U+267A — RECYCLING SYMBOL FOR GENERIC MATERIALS

4

Distinct from universal ♻, type-specific plastic marks, and paper symbols

❓ Frequently Asked Questions

Use &#x267A; (hex), &#9850; (decimal), or \267A in CSS content. There is no named entity. All three render ♺.
U+267A (RECYCLING SYMBOL FOR GENERIC MATERIALS). Miscellaneous Symbols block (U+2600–U+26FF). Hex 267A, decimal 9850.
No. ♺ (U+267A) marks generic recyclable materials. ♻ (U+267B) is the black universal recycling symbol. They are different Unicode characters.
For environmental and sustainability websites, eco-friendly product pages, recycling guides for mixed or unspecified materials, and green initiative content.
Named HTML entities cover a subset of common characters. U+267A uses numeric hex or decimal codes or CSS escapes, which is standard for Miscellaneous Symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — eco symbols, punctuation, math operators, 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