In some of my tikz pictures I use symbols from the fontawesome package.
Screenshot
(The long line of the checkmark should be on the left side.)
Question
How can I mirror symbols in tikz?
MWE
\documentclass[border=2mm]{standalone}
\usepackage{tikz}
\usepackage{fontawesome}
\begin{document}
\begin{tikzpicture}
% Check
\draw (0,0) node {\faCheck};
% Rectangle
\node [draw, thick, shape=rectangle, minimum width=3cm, minimum height=2cm, anchor=center] at (0,0) {};
\end{tikzpicture}
\end{document}
What I tried so far
\begin{scope}[yscale=-1,xscale=1]
\draw (0,0) node {\faCheck};
\end{scope}
doesn't do the trick.

\draw (0,0) node[yscale=-1,xscale=1] {\faCheck};. – Jan 30 '18 at 08:32node[yscale=1,xscale=-1];-) – Andreas Schneider Jan 30 '18 at 08:34\draw (0,0) node {\reflectbox{\faCheck}};– StefanH Jan 30 '18 at 08:40