[Tex/LaTex] How to type this symbol

symbols

I would like to type the following character, which looks like a greater sign with two bars, but I don't know how. I have a link to the Wikipedia page as well as its image.

https://en.wikipedia.org/wiki/Sori_(music)

enter image description here

Best Answer

\documentclass{article}
\usepackage{stackengine,graphicx}
\newcommand\sori{\stackengine{1pt}{\ensuremath{>}}{\rotatebox[origin=c]{90}{%
  \scalebox{-1.3}[1]{\textsl{=}}}}{O}{c}{F}{F}{L}}
\begin{document}
A\sori B
\end{document}

enter image description here

Related Question