Hot Beverage

Shortcodes

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

Unicode
U+2615
HTML Code
☕
HEX Code
☕
CSS Code
\2615
JS/JSON
\u2615
Unix/C/PHP/JAVA
0x2615
URL-encode
%E2%98%95

Customize Hot Beverage

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

  

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

Insert in HTML

1. Direct symbol:
<span>☕</span>
HTML Code:
<span>&#9749;</span>
HEX Code:
<span>&#x2615;</span>

Add with CSS

.hot-beverage::before {
  content: '\\2615';
}

Set it in JavaScript

document.querySelector('.hot-beverage').textContent = '☕';
copied