[Tex/LaTex] Arrow with circle in the middle

symbols

What is the latex command for a right arrow with a circle in the middle?
I have tried detexify and the comprehensive latex symbols list but did not find.

enter image description here

Best Answer

A simple TikZ version:

The \arrowcircle allows for some TikZ options to be specified as optional argument.

\documentclass{article}

\usepackage{tikz}

\newcommand{\arrowcircle}[1][]{%
  \begin{tikzpicture}[#1]
    \draw[->] (0,0ex) -- (2em,0ex);
    \draw (1em,0ex) circle (0.7ex);
  \end{tikzpicture}%
}

\begin{document}
Some dummy text \arrowcircle[blue,line width=0.8pt] continues here!
\end{document}

enter image description here