Construction Sign

๐Ÿšง

Shortcodes

Copy useful codes for construction sign ๐Ÿšง to use in websites, apps, blogs, and docs.

Unicode
U+1F6A7
HTML Code
🚧
HEX Code
🚧
CSS Code
\1F6A7
JS/JSON
\u1F6A7
Unix/C/PHP/JAVA
0x1F6A7
URL-encode
%F0%9F%9A%A7

Customize Construction Sign

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

๐Ÿšง
  

How to use Construction Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿšง</span>
HTML Code:
<span>&#128679;</span>
HEX Code:
<span>&#x1F6A7;</span>

Add with CSS

.construction-sign::before {
  content: '\\1F6A7';
}

Set it in JavaScript

document.querySelector('.construction-sign').textContent = '๐Ÿšง';
copied