I have the following MWE using counters. At which place can I insert \stepcounter to increase always at the next \enumerate item?
All positions which I've tried have failed with \endcsname error.
\documentclass{article}
\usepackage{fontspec}
\newfontfamily\ngg{NewGardiner}
\newcounter{nw}
\setcounter{nw}{13000}
\renewcommand{\theenumi}{\ngg\symbol{"\the\value{\stepcounter{nw}}}}
\begin{document}
\begin{enumerate}
\item rozhodovat se na hraně zajímavého
\item vždycky to tam máš (data v matematice)
\end{enumerate}
\end{document}

enumitemand use\begin{enumerate}[label=\ngg\symbol{\theenumi}](if this is a first level list). – Bernard Oct 06 '19 at 17:17\begin{document}
\begin{enumerate}[\setcounter{theenumi}{13000} label=\ngg\symbol{\theenumi}] \item rozhodovat se na hraně zajímavého \item vždycky to tam máš (data v matematice) \end{enumerate} \end{document}
– user2925716 Oct 06 '19 at 17:29start=13000. – Bernard Oct 06 '19 at 17:3377824or"13000also you don't wantNewGardineras that is the font which does not have the hieroglyphs in Unicode positions. – David Carlisle Oct 06 '19 at 17:38