Minimal example:
\documentclass{article}
\begin{document}
\begin{enumerate}
\item See below
\item [2\textsuperscript{*}.] This isn't right. Or?
\item [3*.] This neither.
\item [4.*] Even worse.
\item See above
\end{enumerate}
\end{document}
Shouldn't instead both the dot and the asterisk be directly at the number?
(I found this answer https://tex.stackexchange.com/a/298893/36836 but I am not familiar with the \up command. Is it just equivalent with \textsuperscript?)
Edit
I agree that the the title of a question marked as duplicate (Add asterisk after labels in enumerate) can be read to ask the same question. However my question added in the body of the question points to a more particular request that seems neither in the other question nor in any of the answer given to that question. I could change the title of my question slightly but that would render some of the answers given to my question look strange. So I leave it with this edit.
Edit 2
Based on a comment (How to typeset enumerations with asterisk?) I prefer as a solution:
\newcommand{\aster}{\makebox[0pt][l]{*}}





1)and2*)rather than1.and2*.or2.*? – yo' Jun 13 '16 at 09:39