Hourglass With Flowing Sand

Shortcodes

Copy useful codes for hourglass with flowing sand symbol ⏳ to use in websites, apps, blogs, and docs.

Unicode
U+23F3
HTML Code
⏳
HEX Code
⏳
CSS Code
\23F3
JS/JSON
\u23F3
Unix/C/PHP/JAVA
0x23F3
URL-encode
%E2%8F%B3

Customize Hourglass With Flowing Sand

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

  

How to use Hourglass With Flowing Sand Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⏳</span>
HTML Code:
<span>&#9203;</span>
HEX Code:
<span>&#x23F3;</span>

Add with CSS

.hourglass-with-flowing-sand::before {
  content: '\\23F3';
}

Set it in JavaScript

document.querySelector('.hourglass-with-flowing-sand').textContent = '⏳';
copied