[Tex/LaTex] How to create a command for the “strange m” symbol in latex

symbols

enter image description here

I am wanting to use the "strange m" symbol in my latex code.

I had hoped to use the scorpio symbol, but have been unable to find a scorpio command that produces what I am looking for. The two that I have found were not exactly what I had in mind.

I essentially want the symbol to be like the greek letter eta, but with two bumps instead of one.

Unfortunately, I am unsure of how to construct NEW symbols in latex.

These are the scorpio symbols

These are more like the symbol I want

Currently the best I have is this symbol, but it has broken apart slightly

enter image description here

Best Answer

Do it yourself joining m and \eta with \clipbox:

\documentclass{article}

\usepackage{trimclip}
\newcommand{\emeta}{\clipbox{0em -1ex .3em -1ex}{$m$}\clipbox{.3em -1ex 0em -1ex}{$\eta$}}
\begin{document}
\[
m\eta
\]
\[
\emeta
\]
\end{document}

enter image description here