HTML Entity for Recycled Paper Symbol (♼)

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

What You'll Learn

How to display the Recycled Paper Symbol (♼) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+267C (RECYCLED PAPER SYMBOL) in the Miscellaneous Symbols block (U+2600–U+26FF)—used on eco-friendly websites, sustainability labels, and product markings for fully recycled paper content.

Render it with ♼, ♼, or CSS escape \267C. There is no named HTML entity. Do not confuse ♼ with U+267D (♽, partially recycled paper), U+267B (♻, universal recycling symbol), or U+267E (♾, permanent paper sign).

⚡ Quick Reference — Recycled Paper Symbol

Unicode U+267C

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+267C
Hex code       ♼
HTML code      ♼
Named entity   (none)
CSS code       \267C
Meaning        Recycled paper mark (fully recycled)
Related        U+267D = partially recycled (♽)
               U+267B = universal recycling (♻)
               U+267E = permanent paper (♾)
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: "\267C";
  }
 </style>
</head>
<body>
<p>Recycled paper (hex): &#x267C;</p>
<p>Recycled paper (decimal): &#9852;</p>
<p id="point">Recycled paper (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Recycled Paper Symbol (♼) is widely supported in all modern browsers:

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

👀 Live Preview

See the Recycled Paper Symbol (♼) in sustainability contexts:

Single symbol
Product label ♼ Recycled paper
Eco section ♼ Sustainability & packaging
Not the same as Partially recycled ♽  |  Universal ♻
Numeric refs &#x267C; &#9852; \267C

🧠 How It Works

1

Hexadecimal Code

&#x267C; uses the Unicode hexadecimal value 267C to display the recycled paper symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\267C is used in CSS stylesheets in the content property of pseudo-elements for icons or labels.

CSS stylesheet
=

Eco symbol result

All three methods render . Unicode U+267C in Miscellaneous Symbols. Next: Recycling Symbol For Type 6 Plastics.

Use Cases

The Recycled Paper Symbol (♼) is commonly used in:

🌳 Eco websites

Sustainability pages, green branding, and environmental campaigns.

📦 Product labels

Packaging info indicating fully recycled paper content.

📝 Sustainability articles

Blog posts, reports, and CSR content about recycled materials.

🌱 Green initiatives

Non-profit sites, eco-certification pages, and awareness campaigns.

📋 Unicode references

Character pickers, entity documentation, and symbol guides.

♿ Accessibility

Pair ♼ with visible text; add aria-label when used as an icon.

💡 Best Practices

Do

  • Use &#x267C; or &#9852; for inline recycled paper symbols
  • Include clear text alongside the symbol on product labels
  • Set <meta charset="utf-8"> for reliable rendering
  • Use the correct symbol—♼ for fully recycled, ♽ for partially recycled
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ♼ with partially recycled ♽ or universal ♻
  • Use padded Unicode notation like U+0267C—the correct value is U+267C
  • Use CSS escape \267C 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+267C

&#x267C; &#9852;
2

For CSS stylesheets, use \267C in the content property

3

Unicode U+267C — RECYCLED PAPER SYMBOL in Miscellaneous Symbols

4

Distinct from partially recycled ♽ and universal recycling ♻

❓ Frequently Asked Questions

Use &#x267C; (hex), &#9852; (decimal), or \267C in CSS content. There is no named entity. All three render ♼.
U+267C (RECYCLED PAPER SYMBOL). Miscellaneous Symbols block (U+2600–U+26FF). Hex 267C, decimal 9852.
No. ♼ (U+267C) marks fully recycled paper. ♽ (U+267D) is PARTIALLY RECYCLED PAPER SYMBOL. They are different Unicode characters.
For eco-friendly websites, sustainability articles, green initiatives, product packaging labels, and any content marking fully recycled paper content.
Named HTML entities cover a subset of common characters. U+267C 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