HTML Entity for Universal Recycling Symbol (♲)

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

What You'll Learn

How to display the Universal Recycling Symbol (♲) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2672 (UNIVERSAL RECYCLING SYMBOL) in the Miscellaneous Symbols block (U+2600–U+26FF)—an internationally recognized mark for recyclable materials and environmental consciousness.

Render it with ♲, ♲, or CSS escape \2672. There is no named HTML entity. Do not confuse ♲ with ♻ (black universal recycling symbol, U+267B) or resin-type marks such as ♳–♹.

⚡ Quick Reference — Universal Recycling Symbol

Unicode U+2672

Miscellaneous Symbols block

Hex Code ♲

Hexadecimal reference

HTML Code ♲

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2672
Hex code       ♲
HTML code      ♲
Named entity   (none)
CSS code       \2672
Meaning        Universal recycling symbol
Related        U+267B = black universal recycling (♻)
               U+267A = generic materials (♺)
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: "\2672";
  }
 </style>
</head>
<body>
<p>Recycling (hex): &#x2672;</p>
<p>Recycling (decimal): &#9842;</p>
<p id="point">Recycling (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2672 is supported in modern browsers when rendered with a font that includes Miscellaneous Symbols:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Universal Recycling Symbol (♲) in sustainability and eco contexts:

Large glyph
Eco label ♲ 100% Recyclable
Sustainability ♲ Green initiative
Packaging Please recycle ♲
Numeric refs &#x2672; &#9842;

🧠 How It Works

1

Hexadecimal Code

&#x2672; uses the Unicode hexadecimal value 2672 to display the Universal Recycling Symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9842; uses the decimal Unicode value 9842 to display the same character.

HTML markup
3

CSS Entity

\2672 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2672 in the Miscellaneous Symbols block (U+2600–U+26FF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Universal Recycling Symbol (♲) is commonly used in:

🌱 Sustainability sites

Environmental blogs, eco-friendly platforms, and green marketing pages.

♻️ Recycling programs

Waste management systems, municipal recycling guides, and drop-off info.

📦 Product packaging

Material specs, recyclability labels, and product information pages.

🌿 Green initiatives

Corporate sustainability pages and environmental awareness campaigns.

📚 Education

Environmental tutorials and instructional recycling content.

🎨 Eco-friendly design

Logos, headers, and decorative sustainability-themed UI elements.

💡 Best Practices

Do

  • Use &#x2672; or &#9842; consistently in markup
  • Add aria-label="recycling" or visible text for accessibility
  • Use fonts that support Miscellaneous Symbols (Segoe UI Symbol, Apple Symbols)
  • Pair ♲ with explanatory text such as “Recyclable” or “Please recycle”
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ♲ (U+2672) with ♻ (black universal recycling U+267B)
  • Use U+02672 or CSS \02672—the correct value is U+2672 and \2672
  • Expect a named entity—none exists for U+2672
  • Put CSS escape \2672 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical recycling interfaces

Key Takeaways

1

Two HTML numeric references render ♲

&#x2672; &#9842;
2

For CSS stylesheets, use \2672 in content

3

Unicode U+2672 — UNIVERSAL RECYCLING SYMBOL

4

Distinct from black universal recycling ♻ (U+267B)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x2672; (hex), &#9842; (decimal), or \2672 in CSS content. There is no named entity. All produce ♲.
U+2672 (UNIVERSAL RECYCLING SYMBOL). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2672, decimal 9842. Indicates recyclable materials and environmental consciousness.
On sustainability websites, environmental projects, eco-friendly designs, recycling programs, green initiatives, product packaging information, and environmental awareness content.
HTML references (&#9842; or &#x2672;) go in markup. The CSS escape \2672 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. ♲ (U+2672) is the universal recycling symbol. ♻ (U+267B) is the black universal recycling symbol. They are different Unicode characters—see the black universal recycling symbol page for U+267B.

Explore More HTML Entities!

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