[Tex/LaTex] Flipped \cong symbol

math-mode

I am looking for a mathematical symbol that I have seen in some papers. It looks very similar to the \cong symbol, but is flipped vertically. In other words, what I am looking for is an equal sign underlined by a tilde. I have seen \eqsim, but this is not what I am looking for.

Any help would be greatly appreciated.

Best Answer

\documentclass{article}
\usepackage{mathtools,amssymb,graphicx}
\newcommand*{\mycong}{\mathrel{\text{\raisebox{.25ex}{\rotatebox[origin=c]{180}{$\cong$}}}}}
\begin{document}
$A \mycong B_{A \mycong B_{A \mycong B}}$
\end{document}

enter image description here

Related Question