[Tex/LaTex] draw pair of scissors in tikz

tikz-pgftikz-styles

Is there someone who can help me to draw a pair of scissors in latex?
The picture below is good enough. I have no problem with constructing the rings, but I don't know how to make the "body"? I have very bad experience in typing in latex, this is by first time. Please help anyone.

enter image description here

Best Answer

% arara: lualatex

\documentclass{article}
\usepackage{fontspec}

\begin{document}
\setmainfont{code2000.ttf}\symbol{"2702}
\setmainfont{quivira.otf}\symbol{"2702}
\setmainfont{symbola.ttf}\symbol{"2702}
\end{document}

enter image description here


If you are on pdfLaTeX:

enter image description here


Included in TikZ:

% arara: pdflatex

\documentclass{report}
\usepackage{tikz}
\usepackage{marvosym}

\begin{document}
\begin{tikzpicture}
\node (scissors) {\Leftscissors};
\end{tikzpicture}
\end{document}
Related Question