HTML Entity for Black Universal Recycling Symbol (♻)

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

What You'll Learn

How to display the Black Universal Recycling Symbol (♻) in HTML and CSS. This character is U+267B in the Miscellaneous Symbols block (U+2600–U+26FF), added in Unicode 3.2 (2002). It represents the universal recycling mark—three chasing arrows folded in a Möbius strip, created for the first Earth Day in 1970 by Gary Anderson for the Container Corporation of America.

There is no named HTML entity for U+267B. Use ♻ or ♻ in markup, or \267B in stylesheet content. You can append Variation Selector-16 (U+FE0F) for colorful emoji display (♻️) in supporting contexts. Pair the symbol with visible text or aria-label (for example “Recyclable” or “Recycling symbol”).

⚡ Quick Reference — Black Universal Recycling Symbol

Unicode U+267B

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

Hex Code ♻

Hexadecimal reference

HTML Code ♻

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+267B
Hex code       ♻
HTML code      ♻
Named entity   —
CSS code       \267B
1

Complete HTML Example

This example shows U+267B using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\267B";
  }
 </style>
</head>
<body>
<p>Black Universal Recycling Symbol using Hexa Decimal: &#x267B;</p>
<p>Black Universal Recycling Symbol using HTML Code: &#9851;</p>
<p id="point">Black Universal Recycling Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+267B is widely supported in modern browsers; recycling glyph artwork varies by typeface:

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

👀 Live Preview

See the recycling symbol at different sizes and in common UI contexts:

Large glyph
Eco label ♻ Recyclable  |  ♻ Please recycle
Emoji variant ♻ ♻️
Caption U+267B is BLACK UNIVERSAL RECYCLING SYMBOL; append U+FE0F for colorful emoji where supported.
Monospace refs &#x267B; &#9851; \267B

🧠 How It Works

1

Hexadecimal Code

&#x267B; references code point U+267B using hex digits 267B after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9851; is the decimal equivalent (9851) for the same Black Universal Recycling Symbol character.

HTML markup
3

CSS Entity

\267B is the CSS escape for U+267B, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+267B. The symbol was added in Unicode 3.2 (2002) and is designated as an emoji.

Use Cases

The Black Universal Recycling Symbol (♻) is commonly used for:

🌍 Environmental websites

Eco organizations, green initiatives, and sustainability landing pages.

♻ Sustainability content

Blog posts, articles, and educational content about recycling and conservation.

🏭 Recycling programs

Waste management sites, municipal recycling info, and program instructions.

🌱 Eco-friendly branding

Product packaging pages, green certifications, and eco-conscious brand identity.

📦 Product labels

Recyclable material indicators, packaging info, and material composition.

📄 Documentation

Recycling guides, how-to guides, and instructional content.

♿ Accessibility

Pair ♻ with text or aria-label (e.g. “Recyclable” or “Recycling symbol”).

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+267B
  • Append U+FE0F (&#xFE0F;) when you want emoji-style ♻️ where supported
  • Display “Recyclable,” “Recycling,” or material type alongside the symbol for clarity
  • Choose fonts that support the Miscellaneous Symbols block (U+2600–U+26FF)
  • Use \267B only inside CSS content, not inside HTML text nodes
  • Use aria-hidden="true" when purely decorative; add text when meaning matters

Don’t

  • Rely on ♻ alone to communicate critical recycling or compliance information
  • Assume every font renders the recycling symbol crisply at small sizes
  • Use the symbol as the only cue without visible text or labels
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)
  • Confuse U+267B with other arrow or loop symbols in the Miscellaneous Symbols block

Key Takeaways

1

Two numeric references render the same glyph

&#x267B; &#9851;
2

CSS content escape

\267B
3

U+267B is the universal recycling symbol—three chasing arrows in a Möbius strip

4

Miscellaneous Symbols block U+2600–U+26FF; no named HTML entity

5

Pair the symbol with text or ARIA when meaning must be clear

❓ Frequently Asked Questions

Use &#x267B; (hex), &#9851; (decimal), or \267B in CSS content. There is no named entity; all valid methods render ♻.
U+267B (hex 267B, decimal 9851). Miscellaneous Symbols (U+2600–U+26FF), added in Unicode 3.2 (2002). The symbol represents the universal recycling mark created for Earth Day 1970.
For environmental websites, sustainability content, eco-friendly branding, recycling programs, waste management, green initiatives, and any content related to recycling or environmental responsibility.
Numeric references belong in HTML. The \267B escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x267B;, &#9851;, or \267B in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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