sneezing face emoji
sneezing-face from Emoji One (Colored) by Emoji One · Default · People · CC-BY-4.0 Attribution required.
- Name
- sneezing-face
- Set
- Emoji One (Colored)
- Style
- Default
- Category
- People
- Viewbox
- 64×64
- License
- CC BY 4.0
The same emoji in other sets
More people icons from Emoji One (Colored)
alienalien-monsterangry-faceangry-face-with-hornsanguished-faceanxious-face-with-sweatastonished-facebabybaby-angelbackhand-index-pointing-downbackhand-index-pointing-leftbackhand-index-pointing-rightbackhand-index-pointing-upbeaming-face-with-smiling-eyesblond-haired-personboybride-with-veilbriefcasebust-in-silhouettebusts-in-silhouettecall-me-handcat-face-with-tears-of-joycat-face-with-wry-smileclapping-hands
Use the sneezing face emoji
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 64 64"><circle cx="35" cy="29" r="27" fill="#ffdd67"/><path fill="#917524" d="M20.5 12.7c-.6.1-.4 2 .2 2c3.8-.3 7.6 1 10.2 3.7c.4.4 1.8-.9 1.4-1.4c-3.1-3.1-7.4-4.7-11.8-4.3m29 0c-4.4-.4-8.7 1.2-11.8 4.3c-.4.5 1 1.8 1.4 1.4c2.7-2.7 6.4-4.1 10.2-3.7c.5.1.8-1.9.2-2"/><path fill="#f5f5f5" d="M33.1 29.3C25 33 21.2 37.3 2 37.8c0 0 2 14.1 12.9 12.2c7.3-1.2 4.3 10.3 4.3 10.3s8-10.3 10-4.6c2.1 5.9 6.8 6.2 6.8 6.2c8.5-11.6 7.2-37.2-2.9-32.6"/><path fill="#d6d6d6" d="M37.3 34.8c-.4-1.1-7.2 11.2-18 25.5c4.6-.6 8-7.6 9.2-4.5c.6 1.7 3.7 4.3 3.7 4.3s8.6-14.5 5.1-25.3m-5-1.3c.9-3.9-12.2 3.6-27.5 11.9c3.9 7.4 10 4.2 12.7 4.9c0 0 12.8-8.3 14.8-16.8"/><path fill="#664e27" d="M51.9 19.8c.5.3.3.9-.1.9c-2.3.3-4.8.7-7.1 2c3.5.6 6.2 2.3 7.7 4.1c.3.4-.1 1-.5.8c-4.1-1.5-8.3-2.3-13.6-1.7c-.4 0-.8-.2-.7-.6c1.4-6.1 9.4-8.4 14.3-5.5m-33.8 0c-.5.3-.3.9.1.9c2.3.3 4.8.7 7.1 2c-3.5.6-6.2 2.3-7.7 4.1c-.3.4.1 1 .5.8c4.1-1.5 8.3-2.3 13.6-1.7c.4 0 .8-.2.7-.6c-1.4-6.1-9.4-8.4-14.3-5.5"/></svg>
React
import type { SVGProps } from "react";
export function EmojioneSneezingFace(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 64 64"><circle cx="35" cy="29" r="27" fill="#ffdd67"/><path fill="#917524" d="M20.5 12.7c-.6.1-.4 2 .2 2c3.8-.3 7.6 1 10.2 3.7c.4.4 1.8-.9 1.4-1.4c-3.1-3.1-7.4-4.7-11.8-4.3m29 0c-4.4-.4-8.7 1.2-11.8 4.3c-.4.5 1 1.8 1.4 1.4c2.7-2.7 6.4-4.1 10.2-3.7c.5.1.8-1.9.2-2"/><path fill="#f5f5f5" d="M33.1 29.3C25 33 21.2 37.3 2 37.8c0 0 2 14.1 12.9 12.2c7.3-1.2 4.3 10.3 4.3 10.3s8-10.3 10-4.6c2.1 5.9 6.8 6.2 6.8 6.2c8.5-11.6 7.2-37.2-2.9-32.6"/><path fill="#d6d6d6" d="M37.3 34.8c-.4-1.1-7.2 11.2-18 25.5c4.6-.6 8-7.6 9.2-4.5c.6 1.7 3.7 4.3 3.7 4.3s8.6-14.5 5.1-25.3m-5-1.3c.9-3.9-12.2 3.6-27.5 11.9c3.9 7.4 10 4.2 12.7 4.9c0 0 12.8-8.3 14.8-16.8"/><path fill="#664e27" d="M51.9 19.8c.5.3.3.9-.1.9c-2.3.3-4.8.7-7.1 2c3.5.6 6.2 2.3 7.7 4.1c.3.4-.1 1-.5.8c-4.1-1.5-8.3-2.3-13.6-1.7c-.4 0-.8-.2-.7-.6c1.4-6.1 9.4-8.4 14.3-5.5m-33.8 0c-.5.3-.3.9.1.9c2.3.3 4.8.7 7.1 2c-3.5.6-6.2 2.3-7.7 4.1c-.3.4.1 1 .5.8c4.1-1.5 8.3-2.3 13.6-1.7c.4 0 .8-.2.7-.6c-1.4-6.1-9.4-8.4-14.3-5.5"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 64 64"><circle cx="35" cy="29" r="27" fill="#ffdd67"/><path fill="#917524" d="M20.5 12.7c-.6.1-.4 2 .2 2c3.8-.3 7.6 1 10.2 3.7c.4.4 1.8-.9 1.4-1.4c-3.1-3.1-7.4-4.7-11.8-4.3m29 0c-4.4-.4-8.7 1.2-11.8 4.3c-.4.5 1 1.8 1.4 1.4c2.7-2.7 6.4-4.1 10.2-3.7c.5.1.8-1.9.2-2"/><path fill="#f5f5f5" d="M33.1 29.3C25 33 21.2 37.3 2 37.8c0 0 2 14.1 12.9 12.2c7.3-1.2 4.3 10.3 4.3 10.3s8-10.3 10-4.6c2.1 5.9 6.8 6.2 6.8 6.2c8.5-11.6 7.2-37.2-2.9-32.6"/><path fill="#d6d6d6" d="M37.3 34.8c-.4-1.1-7.2 11.2-18 25.5c4.6-.6 8-7.6 9.2-4.5c.6 1.7 3.7 4.3 3.7 4.3s8.6-14.5 5.1-25.3m-5-1.3c.9-3.9-12.2 3.6-27.5 11.9c3.9 7.4 10 4.2 12.7 4.9c0 0 12.8-8.3 14.8-16.8"/><path fill="#664e27" d="M51.9 19.8c.5.3.3.9-.1.9c-2.3.3-4.8.7-7.1 2c3.5.6 6.2 2.3 7.7 4.1c.3.4-.1 1-.5.8c-4.1-1.5-8.3-2.3-13.6-1.7c-.4 0-.8-.2-.7-.6c1.4-6.1 9.4-8.4 14.3-5.5m-33.8 0c-.5.3-.3.9.1.9c2.3.3 4.8.7 7.1 2c-3.5.6-6.2 2.3-7.7 4.1c-.3.4.1 1 .5.8c4.1-1.5 8.3-2.3 13.6-1.7c.4 0 .8-.2.7-.6c-1.4-6.1-9.4-8.4-14.3-5.5"/></svg> </template>
CSS
.icon-sneezing-face {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2064%2064%22%3E%3Ccircle%20cx%3D%2235%22%20cy%3D%2229%22%20r%3D%2227%22%20fill%3D%22%23ffdd67%22%2F%3E%3Cpath%20fill%3D%22%23917524%22%20d%3D%22M20.5%2012.7c-.6.1-.4%202%20.2%202c3.8-.3%207.6%201%2010.2%203.7c.4.4%201.8-.9%201.4-1.4c-3.1-3.1-7.4-4.7-11.8-4.3m29%200c-4.4-.4-8.7%201.2-11.8%204.3c-.4.5%201%201.8%201.4%201.4c2.7-2.7%206.4-4.1%2010.2-3.7c.5.1.8-1.9.2-2%22%2F%3E%3Cpath%20fill%3D%22%23f5f5f5%22%20d%3D%22M33.1%2029.3C25%2033%2021.2%2037.3%202%2037.8c0%200%202%2014.1%2012.9%2012.2c7.3-1.2%204.3%2010.3%204.3%2010.3s8-10.3%2010-4.6c2.1%205.9%206.8%206.2%206.8%206.2c8.5-11.6%207.2-37.2-2.9-32.6%22%2F%3E%3Cpath%20fill%3D%22%23d6d6d6%22%20d%3D%22M37.3%2034.8c-.4-1.1-7.2%2011.2-18%2025.5c4.6-.6%208-7.6%209.2-4.5c.6%201.7%203.7%204.3%203.7%204.3s8.6-14.5%205.1-25.3m-5-1.3c.9-3.9-12.2%203.6-27.5%2011.9c3.9%207.4%2010%204.2%2012.7%204.9c0%200%2012.8-8.3%2014.8-16.8%22%2F%3E%3Cpath%20fill%3D%22%23664e27%22%20d%3D%22M51.9%2019.8c.5.3.3.9-.1.9c-2.3.3-4.8.7-7.1%202c3.5.6%206.2%202.3%207.7%204.1c.3.4-.1%201-.5.8c-4.1-1.5-8.3-2.3-13.6-1.7c-.4%200-.8-.2-.7-.6c1.4-6.1%209.4-8.4%2014.3-5.5m-33.8%200c-.5.3-.3.9.1.9c2.3.3%204.8.7%207.1%202c-3.5.6-6.2%202.3-7.7%204.1c-.3.4.1%201%20.5.8c4.1-1.5%208.3-2.3%2013.6-1.7c.4%200%20.8-.2.7-.6c-1.4-6.1-9.4-8.4-14.3-5.5%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2064%2064%22%3E%3Ccircle%20cx%3D%2235%22%20cy%3D%2229%22%20r%3D%2227%22%20fill%3D%22%23ffdd67%22%2F%3E%3Cpath%20fill%3D%22%23917524%22%20d%3D%22M20.5%2012.7c-.6.1-.4%202%20.2%202c3.8-.3%207.6%201%2010.2%203.7c.4.4%201.8-.9%201.4-1.4c-3.1-3.1-7.4-4.7-11.8-4.3m29%200c-4.4-.4-8.7%201.2-11.8%204.3c-.4.5%201%201.8%201.4%201.4c2.7-2.7%206.4-4.1%2010.2-3.7c.5.1.8-1.9.2-2%22%2F%3E%3Cpath%20fill%3D%22%23f5f5f5%22%20d%3D%22M33.1%2029.3C25%2033%2021.2%2037.3%202%2037.8c0%200%202%2014.1%2012.9%2012.2c7.3-1.2%204.3%2010.3%204.3%2010.3s8-10.3%2010-4.6c2.1%205.9%206.8%206.2%206.8%206.2c8.5-11.6%207.2-37.2-2.9-32.6%22%2F%3E%3Cpath%20fill%3D%22%23d6d6d6%22%20d%3D%22M37.3%2034.8c-.4-1.1-7.2%2011.2-18%2025.5c4.6-.6%208-7.6%209.2-4.5c.6%201.7%203.7%204.3%203.7%204.3s8.6-14.5%205.1-25.3m-5-1.3c.9-3.9-12.2%203.6-27.5%2011.9c3.9%207.4%2010%204.2%2012.7%204.9c0%200%2012.8-8.3%2014.8-16.8%22%2F%3E%3Cpath%20fill%3D%22%23664e27%22%20d%3D%22M51.9%2019.8c.5.3.3.9-.1.9c-2.3.3-4.8.7-7.1%202c3.5.6%206.2%202.3%207.7%204.1c.3.4-.1%201-.5.8c-4.1-1.5-8.3-2.3-13.6-1.7c-.4%200-.8-.2-.7-.6c1.4-6.1%209.4-8.4%2014.3-5.5m-33.8%200c-.5.3-.3.9.1.9c2.3.3%204.8.7%207.1%202c-3.5.6-6.2%202.3-7.7%204.1c-.3.4.1%201%20.5.8c4.1-1.5%208.3-2.3%2013.6-1.7c.4%200%20.8-.2.7-.6c-1.4-6.1-9.4-8.4-14.3-5.5%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/emojione/sneezing-face.svg?color=%231a73e8&size=48