[Tex/LaTex] How to draw checkmark inside a colored circle in latex

circles

Referring to this question, how can I draw a checkmark inside a solid circle as shown as a picture?

Regards

http://i.stack.imgur.com/ZefqB.png

Best Answer

Without tikz

\documentclass{article}
%\usepackage{dingbat}
\usepackage{amssymb}
\usepackage{graphicx,xcolor}

\newcommand\circledmark[1][red]{%
  \ooalign{%
    \hidewidth
    \kern0.65ex\raisebox{-0.9ex}{\scalebox{3}{\textcolor{#1}{\textbullet}}}
    \hidewidth\cr
    $\checkmark$\cr
  }%
}

\newcommand\circled[1][red]{%
    \raisebox{-0.9ex}{\scalebox{3}{\textcolor{#1}{\textbullet}}}
  }%

\begin{document}

This is circled \circledmark\quad\circledmark[cyan] and filled \circled[cyan]

\end{document}

enter image description here

Related Question