service dog


service dog

codepoints: 1F415 200D 1F9BA


Copy and Paste

Copy and paste service dog emoji


NameEmojiCode Point
1service dog๐Ÿ•โ€๐ŸฆบU+1F415 U+200D U+1F9BA

Usage of emoji in HTML

You can paste the chosen Emoji

<p> ๐Ÿ•โ€๐Ÿฆบ </p>

Another option is to use the codepoint of the Emoji and replacing (U+) with (&#x).

<p> &#x1F415&#x200D&#x1F9BA </p>

Usage of emoji in CSS

You need to use the ::before or ::after pseudo-element coupled with the content property where you paste the Emoji as the value.

.element::before{
content: "๐Ÿ•โ€๐Ÿฆบ"
}

Another option is to use codepoint replacing (U+) with (\0).

.element::before{
content: "\01F415\0200D\01F9BA"
}

Usage of emoji in JavaScript

Paste the Emoji in the innerHTML value

document.querySelector(".element ").innerHTML = "๐Ÿ•โ€๐Ÿฆบ";

Or use the String method fromCodePoint mixed with the codepoint value where you replace (U+) with (0x).

document.querySelector(".element ").innerHTML = String.fromCodePoint(0x1F415 ,0x200D ,0x1F9BA);




See Also


Contact

Would you like to make a suggestion, feel free to contact us at contact@unitpedia.com