Delivery Truck

๐Ÿšš

Shortcodes

Copy useful codes for delivery truck symbol ๐Ÿšš to use in websites, apps, blogs, and docs.

Unicode
U+1F69A
HTML Code
🚚
HEX Code
🚚
CSS Code
\1F69A
JS/JSON
\u1F69A
Unix/C/PHP/JAVA
0x1F69A
URL-encode
%F0%9F%9A%9A

Customize Delivery Truck

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

๐Ÿšš
  

How to use Delivery Truck Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿšš</span>
HTML Code:
<span>&#128666;</span>
HEX Code:
<span>&#x1F69A;</span>

Add with CSS

.delivery-truck::before {
  content: '\\1F69A';
}

Set it in JavaScript

document.querySelector('.delivery-truck').textContent = '๐Ÿšš';
copied