[Tex/LaTex] Symbol of compactly embedding

symbols

enter image description here

What latex command does this symbol allow?

Best Answer

With stackengine:

\documentclass[]{article}
\usepackage{stackengine}
\newcommand\dhookrightarrow{\mathrel{%
  \ensurestackMath{\stackanchor[.1ex]{\hookrightarrow}{\hookrightarrow}}
}}
\begin{document}
$a \dhookrightarrow b$
\end{document}

enter image description here

If you need it across math styles:

\documentclass[]{article}
\usepackage{stackengine,scalerel}
\newcommand\dhookrightarrow{\mathrel{\ThisStyle{\abovebaseline[-.6\LMex]{%
  \ensurestackMath{\stackanchor[.15\LMex]{\SavedStyle\hookrightarrow}{%
  \SavedStyle\hookrightarrow}}}}}}
\begin{document}
$a \dhookrightarrow b$\par
$\scriptstyle a \dhookrightarrow b$\par
$\scriptscriptstyle a \dhookrightarrow b$\par
\end{document}

enter image description here