Typeset a ‘not equal’ symbol, whose slash is reversed (from the upper-left to the bottom-right)

relation-symbolssymbols

The not equal symbol (), has its slash from the upper-right to the bottom-left. For example:

\begin{equation}
    i  \neq  j
\end{equation}

Typesets the following:

i ≠ j

How can I obtain a similar symbol, whose slash directionality is reversed (i.e., from the upper-left to the bottom-right, as displayed below)?

A non-canonical 'not equal' symbol, with its slash directionality reversed, as described above.

Best Answer

You could make use of \reflectbox (as has been pointed out in the comments), but it won't be usable in super- or subscripts:

\documentclass{article}
\usepackage{graphicx}

\newcommand{\flipneq}{\mathrel{\reflectbox{$\neq$}}}

\begin{document}
$A \flipneq B \neq C$
\end{document}

enter image description here