[Tex/LaTex] Does a symbol for glasses exist

graphicssymbolstikz-pgf

I could not find the symbol of the image below which is in a book in my possession. I honestly do not remember where I saw it. Could someone help me where this symbol is located? This symbol (red rectangle) does not exist in the Comprehensive LATEX Symbol List by Scott Pakin.

enter image description here

Best Answer

Here is a TikZ solution.

enter image description here

\documentclass{article}
\usepackage{blindtext}
\usepackage{tikz}

\newcommand{\glasses}{\resizebox{3em}{!}{%
\tikz{\draw(0,0) coordinate (Origin) --++(0.2,0) coordinate (endL) arc (180:0:0.05)--++(0.2,0) coordinate (endR) --++(45:0.25) arc (180-45:0:0.08) (endR) arc (0:-180:0.1) (endL) arc (0:-180:0.1) (Origin)--++(45:0.25) arc (180-45:0:0.08);
}}}

\begin{document}
\noindent
\glasses\ \textsc{Attention}. \blindtext
\end{document}