[Tex/LaTex] Bent Arrow Symbol

arrowssymbols

enter image description here

Could you help me with search of such arrow symbol in latex, please?

I know that there is \hookrightarrow. But it's not what I want to use in my article.

Best Answer

A TikZ answer; you could personalize the appeareance passing TikZ style commands in the optional argument.

\documentclass{article}
\usepackage{tikz}

\newcommand{\myarrow}[1][]{%
  \begin{tikzpicture}[#1]%
    \draw (0,0.7ex) -- (0,0) -- (0.75em,0);
    \draw (0.55em,0.2em) -- (0.75em,0) -- (0.55em,-0.2em);
  \end{tikzpicture}%
}

\begin{document}

\myarrow

\myarrow[scale=5]

\myarrow[draw=red]

\end{document}

Arrows drawn in TikZ