UTF-8 Emoji Transport

Last Updated : 29 May, 2026

Transport emojis are visual symbols that represent different vehicles and modes of transportation. They are commonly used to indicate travel, movement, and transportation-related activities in digital communication.

  • Represent various land, air, and water transportation vehicles.
  • Useful for discussing travel, commuting, and transportation topics.
  • Can be added to HTML using hexadecimal, decimal UTF-8, or HTML entity codes

Implementing Animals Emojis

HTML
<!--Driver Code Starts-->
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
   Transport Emojis
        </title>
</head>
<body>
<!--Driver Code Ends-->

<p>Car Emoji - &#x1F697; - &#128663;</p>
<p>Rocket Emoji - &#x1F680; - &#128640;</p>
<p>Ship Emoji - &#x1F6A2; - &#128674;</p>

<!--Driver Code Starts-->
</body>
</html>

<!--Driver Code Ends-->
  • The HTML code uses hexadecimal (&#x1F697;) and decimal (&#128663;) entity codes to display transport emojis.
  • Hexadecimal codes start with &#x and are base-16, while decimal codes are base-10 and use just &#. Both represent the same emoji character.

Here’s a list of commonly used transport emojis, along with their Unicode hash code ,HTML entity and decimal code:

Land vehicles

Here are some Land emojis, along with their HTML entities and decimal codes:

EmojiNameUnicodeHTML EntityDecimal Code
🚗CarU+1F697&#x1F697;&#128663;
🚕TaxiU+1F695&#x1F695;&#128661;
🚌BusU+1F68C&#x1F68C;&#128652;
🚎TrolleybusU+1F68E&#x1F68E;&#128654;
🚓Police CarU+1F693&#x1F693;&#128659;
🚑AmbulanceU+1F691&#x1F691;&#128657;
🚒Fire TruckU+1F692&#x1F692;&#128658;
🚚Delivery TruckU+1F69A&#x1F69A;&#128666;
🚜TractorU+1F69C&#x1F69C;&#128668;

Air Vehicles

Here are some Air emojis, along with their HTML entities and decimal codes:

EmojiNameUnicodeHTML EntityDecimal Code
✈️AirplaneU+2708&#x2708;&#9992;
🚁HelicopterU+1F681&#x1F681;&#128641;
🚀RocketU+1F680&#x1F680;&#128640;

Water Vehicles

Here are some Water emojis, along with their HTML entities and decimal codes:

EmojiNameUnicodeHTML EntityDecimal Code
SailboatU+26F5&#x26F5;&#9973;
🚤SpeedboatU+1F6A4&#x1F6A4;&#128676;
🚢ShipU+1F6A2&#x1F6A2;&#128674;
⛴️FerryU+26F4&#x26F4;&#9972;
🛳️Passenger ShipU+1F6F3&#x1F6F3;&#128755;

Traffic Signs

Here are some Traffic Signs emojis, along with their HTML entities and decimal codes:

EmojiNameUnicodeHTML Entity Decimal Code
No EntryU+26D4&#x26D4;&#9940;
🚥Traffic Light HorizontalU+1F6A5&#x1F6A5;&#128677;
🚦Traffic Light VerticalU+1F6A6&#x1F6A6;&#128678;
🚧Construction SignU+1F6A7&#x1F6A7;&#128679;
🚨Police Car LightU+1F6A8&#x1F6A8;&#128680;
🚩Triangular FlagU+1F6A9&#x1F6A9;&#128681;
🚪DoorU+1F6AA&#x1F6AA;&#128682;
🚫No EntryU+1F6AB&#x1F6AB;&#128683;
🚬SmokingU+1F6AC&#x1F6AC;&#128684;
🚭No SmokingU+1F6AD&#x1F6AD;&#128685;
🚮Put Litter in BinU+1F6AE&#x1F6AE;&#128686;
🚯Do Not LitterU+1F6AF&#x1F6AF;&#128719;
🚰Potable WaterU+1F6B0&#x1F6B0;&#128688;
🚱Non-Potable WaterU+1F6B1&#x1F6B1;&#128689;
🚲BicycleU+1F6B2&#x1F6B2;&#128690;
🚳No BicyclesU+1F6B3&#x1F6B3;&#128723;
🚴BicyclistU+1F6B4&#x1F6B4;&#128724;
🚵Mountain BicyclistU+1F6B5&#x1F6B5;&#128725;
🚶PedestrianU+1F6B6&#x1F6B6;&#128694;
🚷No PedestriansU+1F6B7&#x1F6B7;&#128695;
🚸Children CrossingU+1F6B8&#x1F6B8;&#128696;
Comment