Hot Springs

Shortcodes

Copy useful codes for hot springs symbol ♨ to use in websites, apps, blogs, and docs.

Unicode
U+2668
HTML Code
♨
HEX Code
♨
CSS Code
\2668
JS/JSON
\u2668
Unix/C/PHP/JAVA
0x2668
URL-encode
%E2%99%A8

Customize Hot Springs

Customize ♨, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Hot Springs Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>♨</span>
HTML Code:
<span>&#9832;</span>
HEX Code:
<span>&#x2668;</span>

Add with CSS

.hot-springs::before {
  content: '\\2668';
}

Set it in JavaScript

document.querySelector('.hot-springs').textContent = '♨';
copied