HTML Entity for Hot Springs (♨)

What You'll Learn
How to display the Hot Springs (♨) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2668 (HOT SPRINGS) in the Miscellaneous Symbols block (U+2600–U+26FF).
Use ♨, ♨, or CSS \2668. There is no named HTML entity—numeric codes or CSS escapes are required. Ideal for wellness, spa, travel, and tourism content.
⚡ Quick Reference — Hot Springs
U+2668Miscellaneous Symbols
♨Hexadecimal reference
♨Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2668
Hex code ♨
HTML code ♨
Named entity (none)
CSS code \2668
Meaning Hot springs / spa / thermal baths
CSS note \2668 or \02668 in content propertyComplete HTML Example
This example demonstrates the Hot Springs (♨) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2668";
}
</style>
</head>
<body>
<p>Hot Springs using Hexadecimal: ♨</p>
<p>Hot Springs using Decimal: ♨</p>
<p id="point">Hot Springs using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Hot Springs (♨) renders when fonts support Miscellaneous Symbols (U+2600–U+26FF):
👀 Live Preview
Hot Springs symbol (♨) in spa and travel content:
🧠 How It Works
Hexadecimal Code
♨ uses Unicode hexadecimal 2668 to display the Hot Springs in HTML markup.
Decimal HTML Code
♨ uses decimal Unicode value 9832 for the same character.
CSS Entity
\2668 is used in CSS, typically in the content property of pseudo-elements such as ::after.
Same visual result
All three methods produce ♨. Unicode U+2668 is in Miscellaneous Symbols. Next: Hryvnia Sign.
Use Cases
The Hot Springs (U+2668) is commonly used in:
Spa services, hot springs, saunas, or thermal baths on wellness and hotel sites.
Mark hot spring destinations, travel guides, or tourism content.
Show hot spring or thermal bath locations on maps and directories.
Highlight properties with hot springs or thermal facilities.
List amenities (hot tub, hot spring) in menus or feature lists.
Logos or icons for spa, wellness, or travel brands.
💡 Best Practices
Do
- Use
♨or♨in HTML (no named entity) - Choose fonts with Miscellaneous Symbols support (Segoe UI, Noto Symbols)
- Declare UTF-8 with
<meta charset="utf-8"> - Pair the symbol with text (e.g. “Hot Springs ♨”) for accessibility
- Use the same hex or decimal method consistently across a page
- Test rendering on mobile and desktop browsers
Don’t
- Expect a named HTML entity for U+2668
- Use CSS
\2668in HTML text nodes - Rely on the symbol alone without a text label for screen readers
- Assume every system font includes U+2668
- Skip browser testing for symbol-heavy pages
Key Takeaways
Two HTML numeric references plus CSS insert U+2668
♨ ♨For CSS, use \2668 in the content property
Unicode U+2668 — HOT SPRINGS
No named entity—use hex or decimal
Next: Hryvnia Sign
❓ Frequently Asked Questions
♨ (hex), ♨ (decimal), or \2668 in CSS content. There is no named entity. All three methods render the same glyph (♨).U+2668 (HOT SPRINGS) in the Miscellaneous Symbols block (U+2600–U+26FF). Hex 2668, decimal 9832. Used for hot springs, spas, and thermal baths.♨ or ♨) go directly in markup. The CSS escape \2668 is used in stylesheets, typically in the content property of pseudo-elements.♨, decimal ♨, or CSS \2668 in the content property of pseudo-elements.♨ or ♨) in HTML emails. For PDFs, ensure the font supports U+2668. Many email clients and PDF generators support Miscellaneous Symbols.<meta charset="utf-8">) and a font that supports Miscellaneous Symbols. Try Segoe UI, Noto Symbols, or Arial Unicode MS if the glyph is missing.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, math, and more.
8 people found this page helpful
