[Tex/LaTex] Looking for symbol: Fire

macrossymbolstikz-stylestikzsymbols

I am looking for a "Fire" symbol:
Like this, or more minimalistic:

enter image description here

I found this code for a Shield, and thought that maybe you could make a Fire symbol that way?

  \documentclass{article}
  \usepackage{tikz}
  \begin{document}
  \newcommand\shield{%
  \tikz [baseline] \draw (0,1.75ex) -- (0,0.75ex) arc [radius=0.75ex, start 
   angle=-180, end angle=0] -- (1.5ex,1.75ex) -- cycle;%
   }

   A shield: \shield
   \end{document} 

Link: Looking for symbol: Shield

The code for the Shield gives this output:

enter image description here

Any suggestions – either for where to find a Fire symbol, or how to "create" it through other ways?

Best Answer

Using the free OpenSansEmoji font and XeLaTeX or LuaLaTeX:

\documentclass{article}
\usepackage{fontspec}
\newfontfamily\emojifont{OpenSansEmoji} % https://github.com/MorbZ/OpenSansEmoji
\DeclareTextFontCommand{\emoji}{\emojifont}
\begin{document}
\Huge\emoji{šŸ”„}
\end{document}

output of code