Fog

๐ŸŒซ

Shortcodes

Copy useful codes for fog symbol ๐ŸŒซ to use in websites, apps, blogs, and docs.

Unicode
U+1F32B
HTML Code
🌫
HEX Code
🌫
CSS Code
\1F32B
JS/JSON
\u1F32B
Unix/C/PHP/JAVA
0x1F32B
URL-encode
%F0%9F%8C%AB

Customize Fog

Customize ๐ŸŒซ, download it as SVG or PNG, or copy the generated HTML snippet.

๐ŸŒซ
  

How to use Fog Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ŸŒซ</span>
HTML Code:
<span>&#127787;</span>
HEX Code:
<span>&#x1F32B;</span>

Add with CSS

.fog::before {
  content: '\\1F32B';
}

Set it in JavaScript

document.querySelector('.fog').textContent = '๐ŸŒซ';
copied