I want to input a lambda with a bar (ƛ) with font STIX Two Math in math mode. I've checked in the unicode table that it had a code U+019B, and I'm sure STIX Two Math contains this character. I've tried
\documentclass{article}
\usepackage{amsmath,unicode-math}
\setmathfont{STIX Two Math}
\begin{document}
$ \symbol{"019B} $, $ ƛ $
\end{document}
Both of them didn't output anything. My question is how can I type it in math mode?

STIX Two Textvia\setmainfont-- manages to typeset the letter in question just fine:\documentclass{article} \usepackage{amsmath,unicode-math} \setmainfont{STIX Two Text} \setmathfont{STIX Two Math} \begin{document} \symbol{411} $\text{\symbol{411}}$ \end{document}. Please clarify what it is that you're trying to achieve. – Mico Feb 10 '21 at 06:56