HTML Entity for Recycling Symbol Type 7 Plastics (♹)

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

What You'll Learn

How to display the Recycling Symbol for Type 7 Plastics (♹) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2679 (RECYCLING SYMBOL FOR TYPE-7 PLASTICS) in the Miscellaneous Symbols block (U+2600–U+26FF)—used for “Other” plastics (polycarbonate, nylon, multi-layer, and mixed resin types) on packaging and eco-friendly websites.

Render it with ♹, ♹, or CSS escape \2679. There is no named HTML entity. Do not confuse ♹ with U+267B (♻, universal recycling), U+2678 (♸, type 6 PS), or resin codes 1–6 (♳–♸).

⚡ Quick Reference — Type 7 Plastics Symbol

Unicode U+2679

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+2679
Hex code       ♹
HTML code      ♹
Named entity   (none)
CSS code       \2679
Meaning        Type-7 plastics (Other) recycling mark
Resin code     7 = Other plastics (PC, nylon, mixed)
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: "\2679";
  }
 </style>
</head>
<body>
<p>Type 7 plastics (hex): &#x2679;</p>
<p>Type 7 plastics (decimal): &#9849;</p>
<p id="point">Type 7 plastics (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Type 7 Plastics recycling symbol (♹) is widely supported in all modern browsers:

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

👀 Live Preview

See the Type 7 Plastics recycling symbol (♹) in sustainability contexts:

Single symbol
Packaging label ♹ Other — Type 7 plastic
Recycling guide ♹ Recycle with type 7 plastics
Not the same as Universal ♻  |  Type 6 ♸  |  Type 1 ♳
Numeric refs &#x2679; &#9849; \2679

🧠 How It Works

1

Hexadecimal Code

&#x2679; uses the Unicode hexadecimal value 2679 to display the type 7 plastics recycling symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2679 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+2679 in Miscellaneous Symbols. Next: Reference Mark.

Use Cases

The Type 7 Plastics recycling symbol (♹) is commonly used in:

🌳 Eco websites

Sustainability projects, green branding, and environmental campaigns.

📦 Other plastics

Polycarbonate bottles, nylon, multi-layer packaging, and mixed resin labels.

📝 Recycling guides

Municipal waste pages explaining how to sort type 7 plastics.

🎓 Education

Plastic resin code charts and environmental science content.

📋 Unicode references

Character pickers, entity documentation, and symbol guides.

♿ Accessibility

Pair ♹ with visible text like “Type 7 Other”; add aria-label for icons.

💡 Best Practices

Do

  • Use &#x2679; or &#9849; for inline type 7 plastic marks
  • Include resin code text (Other / Type 7) alongside the symbol
  • Set <meta charset="utf-8"> for reliable rendering
  • Use the correct symbol—♹ for type 7, not universal ♻
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ♹ with universal recycling ♻ or other resin-type marks
  • Use padded Unicode notation like U+02679—the correct value is U+2679
  • Use CSS escape \2679 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+2679

&#x2679; &#9849;
2

For CSS stylesheets, use \2679 in the content property

3

Unicode U+2679 — RECYCLING SYMBOL FOR TYPE-7 PLASTICS (Other)

4

Distinct from universal ♻, type 6 ♸, and types 1–5 (♳–♷)

❓ Frequently Asked Questions

Use &#x2679; (hex), &#9849; (decimal), or \2679 in CSS content. There is no named entity. All three render ♹.
U+2679 (RECYCLING SYMBOL FOR TYPE-7 PLASTICS). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2679, decimal 9849. Resin code 7 = Other plastics.
No. ♹ (U+2679) is the type-7 plastics mark for Other/mixed plastics. ♻ (U+267B) is the black universal recycling symbol. They are different Unicode characters.
For eco-friendly websites, sustainability projects, other/mixed plastic packaging labels, recycling guides, and environmental content about resin identification codes.
Named HTML entities cover a subset of common characters. U+2679 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