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