[Tex/LaTex] Double checkmark symbol

stacking-symbols

How do I produce double checkmarks? Similar to this:

enter image description here

\rlap{\checkmark}\checkmark

overlaps one on the other

Best Answer

Rather than \checkmark from the amssymb package this symbols looks closure to \checked from wasysym. You can use:

\documentclass{article}
\usepackage{xcolor}
\usepackage{wasysym}

\newcommand\doublecheck{\textcolor{blue}{\checked\kern-0.6em\checked}}

\begin{document}

    \doublecheck

\end{document}

to produce:

enter image description here