HTML Entity for Partially Recycled Paper Symbol (♽)

What You'll Learn
How to display the Partially Recycled Paper Symbol (♽) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+267D (PARTIALLY RECYCLED PAPER SYMBOL) in the Miscellaneous Symbols block (U+2600–U+26FF)—used on eco-friendly websites, sustainability labels, and product markings for partially recycled paper content.
Render it with ♽, ♽, or CSS escape \267D. There is no named HTML entity. Do not confuse ♽ with U+267B (♻, universal recycling symbol) or U+267A (♺, recycling symbol for generic materials).
⚡ Quick Reference — Partially Recycled Paper Symbol
U+267DMiscellaneous Symbols (U+2600–U+26FF)
♽Hexadecimal reference
♽Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+267D
Hex code ♽
HTML code ♽
Named entity (none)
CSS code \267D
Meaning Partially recycled paper mark
Related U+267B = universal recycling (♻)
U+267A = generic materials (♺)
Block Miscellaneous Symbols (U+2600–U+26FF)Complete HTML Example
A simple example showing ♽ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\267D";
}
</style>
</head>
<body>
<p>Partially recycled paper (hex): ♽</p>
<p>Partially recycled paper (decimal): ♽</p>
<p>Eco label: ♽ Partially recycled paper</p>
<p id="point">Partially recycled paper (CSS): </p>
</body>
</html>🌐 Browser Support
The Partially Recycled Paper Symbol (♽) is widely supported in all modern browsers:
👀 Live Preview
See the Partially Recycled Paper Symbol (♽) in sustainability contexts:
🧠 How It Works
Hexadecimal Code
♽ uses the Unicode hexadecimal value 267D to display the partially recycled paper symbol.
Decimal HTML Code
♽ uses the decimal Unicode value 9853 for the same character.
CSS Entity
\267D is used in CSS stylesheets in the content property of pseudo-elements for icons or labels.
Eco symbol result
All three methods render ♽. Unicode U+267D in Miscellaneous Symbols. Next: Peace Symbol (☮).
Use Cases
The Partially Recycled Paper Symbol (♽) is commonly used in:
Sustainability pages, green branding, and environmental campaigns.
Packaging info indicating partially recycled paper content.
Recycling guides and environmental awareness content.
Stationery, catalogs, and paper product descriptions online.
Character pickers, entity documentation, and symbol guides.
Pair ♽ with visible text like “Partially recycled paper”; do not rely on the symbol alone.
💡 Best Practices
Do
- Use
♽or♽for inline eco symbols - Include descriptive text alongside the symbol on product pages
- Set
<meta charset="utf-8">for reliable rendering - Choose the correct recycling symbol for your material type
- Pick one numeric style per project for consistency
Don’t
- Confuse ♽ with universal recycling ♻ or generic ♺
- Use padded Unicode notation like U+0267D—the correct value is
U+267D - Use CSS escape
\267Din HTML text nodes - Use ♽ as the sole label without explanatory text for accessibility
- Assume every font renders Miscellaneous Symbols identically—test your typeface
Key Takeaways
Two HTML numeric references plus CSS for U+267D
♽ ♽For CSS stylesheets, use \267D in the content property
Unicode U+267D — PARTIALLY RECYCLED PAPER SYMBOL
Distinct from universal recycling ♻ and generic materials ♺
Previous: Partial Differential (∂) Next: Peace Symbol (☮)
❓ Frequently Asked Questions
♽ (hex), ♽ (decimal), or \267D in CSS content. There is no named entity. All three render ♽.U+267D (PARTIALLY RECYCLED PAPER SYMBOL). Miscellaneous Symbols block (U+2600–U+26FF). Hex 267D, decimal 9853.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
