I am interested in using the XCharter font with oldstyle numerals and its 'alternate 1'.
Using pdftex, this is simply achieved as
\documentclass{article}
\usepackage[osf]{XCharter}
\usepackage[T1]{fontenc}
\begin{document}
With pdftex: 123456789
\end{document}
However, while using Luatex to compile the document, it is necessary to load the font using the package fontspec,
\documentclass{article}
\usepackage{fontspec}
\setmainfont{XCharter}[Numbers=OldStyle]
\begin{document}
With luatex (and fontspec): 123456789
\end{document}
How does one obtain the 'alternate 1' with oldstyle numerals using XCharter with Luatex?

