UTF-8 Animals Emoji

Last Updated : 29 May, 2026

Animal emojis are visual symbols that represent different animals and wildlife. They are commonly used to express emotions, ideas, nature-related themes, or simply to represent a favorite animal in digital communication.

  • Represent a wide variety of animals, birds, insects, and marine life.
  • Help convey emotions, nature-related themes, and symbolic meanings.
  • Can be added to HTML using hexadecimal, decimal UTF-8, or HTML entity codes.

Implementing Animals Emojis

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

    <p>Dog Emoji - &#x1F436; - &#128054;</p>
    <p>Cat Emoji - &#x1F431; - &#128049;</p>
    <p>Mouse Emoji - &#x1F42D; - &#128045;</p>

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

<!--Driver Code Ends-->
  • The HTML code uses hexadecimal (&#x1F436;) and decimal (&#128054;) entity codes to display animal 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 animal emojis, categorized and with their Unicode, HTML entity, and decimal codes:

Mammals

Here are the list of mammals in table order of HTML entities and decimal codes:

EmojiNameUnicodeHTML EntityDecimal Code
🐨KoalaU+1F428&#x1F428;&#128040;
🐷PigU+1F437&#x1F437;&#128055;
🐮CowU+1F42E&#x1F42E;&#128046;
🐶DogU+1F436&#x1F436;&#128054;
🐱CatU+1F431&#x1F431;&#128049;
🐭MouseU+1F42D&#x1F42D;&#128045;
🐹HamsterU+1F439&#x1F439;&#128057;
🐰RabbitU+1F430&#x1F430;&#128048;
🐵MonkeyU+1F435&#x1F435;&#128053;
🐻BearU+1F43B&#x1F43B;&#128059;
🐼PandaU+1F43C&#x1F43C;&#128060;
🐯TigerU+1F42F&#x1F42F;&#128047;
🦁LionU+1F981&#x1F981;&#129409;
🦊FoxU+1F98A&#x1F98A;&#129418;
🐴HorseU+1F434&#x1F434;&#128052;
🦄UnicornU+1F984&#x1F984;&#129412;
🐺WolfU+1F43A&#x1F43A;&#128058;
🦧GorillaU+1F9A7&#x1F9A7;&#129639;

Birds

Next, we have a selection of bird emojis:

EmojiNameUnicodeHTML EntityDecimal Code
🐤Baby ChickU+1F424&#x1F424;&#128036;
🐦BirdU+1F426&#x1F426;&#128038;
🐧PenguinU+1F427&#x1F427;&#128039;
🐔ChickenU+1F414&#x1F414;&#128020;
🦆DuckU+1F986&#x1F986;&#129414;
🦅EagleU+1F985&#x1F985;&#129413;
🦉OwlU+1F989&#x1F989;&#129417;

Insects

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

EmojiNameUnicodeHTML EntityDecimal Code
🦋ButterflyU+1F98B&#x1F98B;&#129419;
🐌SnailU+1F40C&#x1F40C;&#128012;
🐝HoneybeeU+1F41D&#x1F41D;&#128029;
🐜AntU+1F41C&#x1F41C;&#128028;
🐞Lady BeetleU+1F41E&#x1F41E;&#128030;

Other Animals

And finally, here are some other animal emojis, ordered by their HTML entities and decimal codes:

EmojiNameUnicodeHTML EntityDecimal Code
🐸FrogU+1F438&#x1F438;&#128056;
🐙OctopusU+1F419&#x1F419;&#128025;
🐢TurtleU+1F422&#x1F422;&#128034;
🦂ScorpionU+1F982&#x1F982;&#129410;
🦀CrabU+1F980&#x1F980;&#129408;
Comment