Use unicode character in Overleaf

symbolsunicode

I want to use the symbol ⥁ (U+2941) in Overleaf, but when I try changing the compiler from pdflatex to XeLatex nothing happens. I also tried the advice given in here but it does not work. What can I do?

My code:

\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
    $n⥁c$
\end{document}

Best Answer

You need a suitable font eg with lualatex or xelatex

enter image description here

\documentclass{article}

\usepackage{unicode-math}
\setmathfont{Stix Two Math}

\begin{document}

$ A ⥁ B \cwcirclearrow C $
\end{document}