HTML Entity for Recycling Symbol Type 2 Plastics (♴)

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

What You'll Learn

How to display the Recycling Symbol for Type 2 Plastics (♴) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2674 (RECYCLING SYMBOL FOR TYPE-2 PLASTICS) in the Miscellaneous Symbols block (U+2600–U+26FF)—used for HDPE (high-density polyethylene) resin identification on packaging and eco-friendly websites.

Render it with ♴, ♴, or CSS escape \2674. There is no named HTML entity. Do not confuse ♴ with U+267B (♻, universal recycling), U+2673 (♳, type 1 PET), or U+2675 (♵, type 3 PVC).

⚡ Quick Reference — Type 2 Plastics Symbol

Unicode U+2674

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+2674
Hex code       ♴
HTML code      ♴
Named entity   (none)
CSS code       \2674
Meaning        Type-2 plastics (HDPE) recycling mark
Resin code     2 = High-density polyethylene (HDPE)
Related        U+267B = universal recycling (♻)
               U+2673 = type-1 plastics (♳)
               U+2675 = type-3 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: "\2674";
  }
 </style>
</head>
<body>
<p>Type 2 plastics (hex): &#x2674;</p>
<p>Type 2 plastics (decimal): &#9844;</p>
<p id="point">Type 2 plastics (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Type 2 Plastics recycling symbol (♴) is widely supported in all modern browsers:

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

👀 Live Preview

See the Type 2 Plastics recycling symbol (♴) in sustainability contexts:

Single symbol
Packaging label ♴ HDPE — Type 2 plastic
Recycling guide ♴ Recycle with type 2 plastics
Not the same as Universal ♻  |  Type 1 ♳  |  Type 3 ♵
Numeric refs &#x2674; &#9844; \2674

🧠 How It Works

1

Hexadecimal Code

&#x2674; uses the Unicode hexadecimal value 2674 to display the type 2 plastics recycling symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Type 2 Plastics recycling symbol (♴) is commonly used in:

🌳 Eco web design

Sustainability pages, green branding, and environmental campaigns.

📦 HDPE packaging

Milk jugs, detergent bottles, and HDPE container labels.

📝 Recycling guides

Municipal waste pages explaining how to sort type 2 plastics.

🎓 Education

Environmental science content and resin identification code charts.

📋 Unicode references

Character pickers, entity documentation, and symbol guides.

♿ Accessibility

Pair ♴ with visible text like “Type 2 HDPE”; add aria-label for icons.

💡 Best Practices

Do

  • Use &#x2674; or &#9844; for inline type 2 plastic marks
  • Include resin code text (HDPE / Type 2) alongside the symbol
  • Set <meta charset="utf-8"> for reliable rendering
  • Use the correct symbol—♴ for type 2, 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+02674—the correct value is U+2674
  • Use CSS escape \2674 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+2674

&#x2674; &#9844;
2

For CSS stylesheets, use \2674 in the content property

3

Unicode U+2674 — RECYCLING SYMBOL FOR TYPE-2 PLASTICS (HDPE)

4

Distinct from universal ♻, type 1 ♳, and type 3 ♵

❓ Frequently Asked Questions

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