[Tex/LaTex] LaTeX version of the left-handed tick mark

symbols

I am looking for a way to encode this symbol:enter image description here

This is the natural check mark for a left-handed person, as this is what happens when we apply an outward flick of the wrist to a pen. However, all the checkmarks I have found for LaTeX are right-handed.

Best Answer

Sure thing! Reflect the regular \checkmark (from amssymb) using graphicx's \reflectbox:

enter image description here

\documentclass{article}

\usepackage{amssymb,graphicx}

\newcommand{\lcheckmark}{\reflectbox{\checkmark}}

\begin{document}

\verb| \checkmark|: \checkmark \par
\verb|\lcheckmark|: \lcheckmark

\end{document}