HTML Entity for Recycling Symbol Type 3 Plastics (♵)

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

What You'll Learn

How to display the Recycling Symbol for Type 3 Plastics (♵) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2675 (RECYCLING SYMBOL FOR TYPE-3 PLASTICS) in the Miscellaneous Symbols block (U+2600–U+26FF)—used for PVC (polyvinyl chloride) resin identification on packaging and environmental-themed websites.

Render it with ♵, ♵, or CSS escape \2675. There is no named HTML entity. Do not confuse ♵ with U+267B (♻, universal recycling), U+2674 (♴, type 2 HDPE), or U+2676 (♶, type 4 LDPE).

⚡ Quick Reference — Type 3 Plastics Symbol

Unicode U+2675

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+2675
Hex code       ♵
HTML code      ♵
Named entity   (none)
CSS code       \2675
Meaning        Type-3 plastics (PVC) recycling mark
Resin code     3 = Polyvinyl chloride (PVC)
Related        U+267B = universal recycling (♻)
               U+2674 = type-2 plastics (♴)
               U+2676 = type-4 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: "\2675";
  }
 </style>
</head>
<body>
<p>Type 3 plastics (hex): &#x2675;</p>
<p>Type 3 plastics (decimal): &#9845;</p>
<p id="point">Type 3 plastics (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Type 3 Plastics recycling symbol (♵) is widely supported in all modern browsers:

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

👀 Live Preview

See the Type 3 Plastics recycling symbol (♵) in sustainability contexts:

Single symbol
Packaging label ♵ PVC — Type 3 plastic
Recycling guide ♵ Recycle with type 3 plastics
Not the same as Universal ♻  |  Type 2 ♴  |  Type 4 ♶
Numeric refs &#x2675; &#9845; \2675

🧠 How It Works

1

Hexadecimal Code

&#x2675; uses the Unicode hexadecimal value 2675 to display the type 3 plastics recycling symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2675 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+2675 in Miscellaneous Symbols. Next: Recycling Symbol Type 4 Plastics.

Use Cases

The Type 3 Plastics recycling symbol (♵) is commonly used in:

🌳 Environmental sites

Eco-friendly websites, sustainability projects, and green branding.

📦 PVC packaging

Pipes, vinyl products, and PVC container resin identification labels.

📝 Recycling guides

Municipal waste pages explaining how to sort type 3 plastics.

🎓 Education

Plastic recycling code charts and environmental science content.

📋 Unicode references

Character pickers, entity documentation, and symbol guides.

♿ Accessibility

Pair ♵ with visible text like “Type 3 PVC”; add aria-label for icons.

💡 Best Practices

Do

  • Use &#x2675; or &#9845; for inline type 3 plastic marks
  • Include resin code text (PVC / Type 3) alongside the symbol
  • Set <meta charset="utf-8"> for reliable rendering
  • Use the correct symbol—♵ for type 3, 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+02675—the correct value is U+2675
  • Use CSS escape \2675 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+2675

&#x2675; &#9845;
2

For CSS stylesheets, use \2675 in the content property

3

Unicode U+2675 — RECYCLING SYMBOL FOR TYPE-3 PLASTICS (PVC)

4

Distinct from universal ♻, type 2 ♴, and type 4 ♶

❓ Frequently Asked Questions

Use &#x2675; (hex), &#9845; (decimal), or \2675 in CSS content. There is no named entity. All three render ♵.
U+2675 (RECYCLING SYMBOL FOR TYPE-3 PLASTICS). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2675, decimal 9845. Resin code 3 = PVC.
No. ♵ (U+2675) is the type-3 plastics mark for PVC. ♻ (U+267B) is the black universal recycling symbol. They are different Unicode characters.
For displaying plastic recycling codes in website design, PVC packaging labels, recycling guides, environmental-themed projects, and educational content about resin identification codes.
Named HTML entities cover a subset of common characters. U+2675 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