Customs

๐Ÿ›ƒ

Shortcodes

Copy useful codes for customs symbol ๐Ÿ›ƒ to use in websites, apps, blogs, and docs.

Unicode
U+1F6C3
HTML Code
🛃
HEX Code
🛃
CSS Code
\1F6C3
JS/JSON
\u1F6C3
Unix/C/PHP/JAVA
0x1F6C3
URL-encode
%F0%9F%9B%83

Customize Customs

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

๐Ÿ›ƒ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ›ƒ</span>
HTML Code:
<span>&#128707;</span>
HEX Code:
<span>&#x1F6C3;</span>

Add with CSS

.customs::before {
  content: '\\1F6C3';
}

Set it in JavaScript

document.querySelector('.customs').textContent = '๐Ÿ›ƒ';
copied