HTML Entity for Permanent Paper Sign (♾)

What You'll Learn
How to display the Permanent Paper Sign (♾) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+267E (PERMANENT PAPER SIGN) in the Miscellaneous Symbols block (U+2600–U+26FF)—used on archival documents, legal content, library resources, and printing specifications for acid-free or long-lasting paper.
Render it with ♾, ♾, or CSS escape \267E. There is no named HTML entity. Do not confuse ♾ with U+221E (∞, mathematical infinity) or U+267D (♽, partially recycled paper symbol).
⚡ Quick Reference — Permanent Paper Sign
U+267EMiscellaneous Symbols (U+2600–U+26FF)
♾Hexadecimal reference
♾Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+267E
Hex code ♾
HTML code ♾
Named entity (none)
CSS code \267E
Meaning Permanent / archival paper mark
Related U+267D = partially recycled paper (♽)
U+221E = infinity (∞)
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: "\267E";
}
</style>
</head>
<body>
<p>Permanent paper (hex): ♾</p>
<p>Permanent paper (decimal): ♾</p>
<p>Archival label: ♾ Permanent paper</p>
<p id="point">Permanent paper (CSS): </p>
</body>
</html>🌐 Browser Support
The Permanent Paper Sign (♾) is widely supported in all modern browsers:
👀 Live Preview
See the Permanent Paper Sign (♾) in archival and publishing contexts:
🧠 How It Works
Hexadecimal Code
♾ uses the Unicode hexadecimal value 267E to display the permanent paper sign.
Decimal HTML Code
♾ uses the decimal Unicode value 9854 for the same character.
CSS Entity
\267E is used in CSS stylesheets in the content property of pseudo-elements for icons or labels.
Archival symbol result
All three methods render ♾. Unicode U+267E in Miscellaneous Symbols. Previous: Period (.).
Use Cases
The Permanent Paper Sign (♾) is commonly used in:
Library catalogs, preservation guides, and digitization projects.
Court records, statutes, and official publications on durable paper.
Paper product pages describing acid-free or permanent stock.
Stationery, book printing, and fine-art paper descriptions online.
Character pickers, entity documentation, and symbol guides.
Pair ♾ with visible text like “Permanent paper”; do not rely on the symbol alone.
💡 Best Practices
Do
- Use
♾or♾for inline archival symbols - Include descriptive text alongside the symbol on document pages
- Set
<meta charset="utf-8">for reliable rendering - Distinguish ♾ from mathematical infinity ∞ in context
- Pick one numeric style per project for consistency
Don’t
- Confuse ♾ with infinity ∞ or partially recycled paper ♽
- Use padded Unicode notation like U+0267E—the correct value is
U+267E - Use CSS escape
\267Ein 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+267E
♾ ♾For CSS stylesheets, use \267E in the content property
Unicode U+267E — PERMANENT PAPER SIGN
Distinct from infinity ∞ and partially recycled paper ♽
Previous: Period (.) Next: Peseta Sign (₧)
❓ Frequently Asked Questions
♾ (hex), ♾ (decimal), or \267E in CSS content. There is no named entity. All three render ♾.U+267E (PERMANENT PAPER SIGN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 267E, decimal 9854.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
