I'm using Win10, TeXLive 2020. When I use XeLaTeX to compile code below
\documentclass{article}
\usepackage{unicode-math}
\newenvironment{Question}{\textbf{envname}}{}
\begin{document}
\begin{Question}
test
\end{Question}
\end{document}

When I change environment name or unload unicode-math package, I can get the correct output
\documentclass{article}
\usepackage{unicode-math}
\newenvironment{question}{\textbf{envname}}{}
\begin{document}
\begin{question}
test
\end{question}
\end{document}
I can get

Why did that happen and how to fix it without changing the environment name?