I searched for the answer to my question a lot and I seem to always come very close to it but not quite getting there. Imagine I have an author called "Tarcisio F. Maciel" that I find somewhat special and I would like to mark him with an asterisk in my reference list. With the following code (found in this forum) I can make him bold but appending an asterisk didn't work for me (please not that you need a fairly new distribution of Miktex or Texlive to compile correctly). Do you have an idea? I would like to change as little as possible with the example because I really like the idea of identifying authors by their hash (I have multiple references with him and they should always be highlighted).
\documentclass{article}
\usepackage[backend=biber,style=numeric]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@incollection{Silva:2014a,
title={Radio Resource Management for Device-to-Device Communications in Long Term Evolution Networks},
author={Carlos F. M. Silva and Silva, Jr., Jos\'{e} Mairton B. and Tarcisio F. Maciel},
booktitle={Resource Allocation and {MIMO} for {4G} and Beyond},
publisher={Springer Science+Business Media},
year=2014,
address={New York, USA},
editor={Francisco Rodrigo Porto Cavalcanti},
pages={105-156},
doi={10.1007/978-1-4614-8057-0_3},
isbn={978-1-4614-8056-3},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\usepackage{xpatch}% or use https://tex.stackexchange.com/a/40705
\newbibmacro*{name:bold}[2]{%
\def\do##1{\iffieldequalstr{hash}{##1}{\bfseries\listbreak}{}}%
\dolistloop{\boldnames}%
}
\newcommand*{\boldnames}{}
\xpretobibmacro{name:family}{\begingroup\usebibmacro{name:bold}{#1}{#2}}{}{}
\xpretobibmacro{name:given-family}{\begingroup\usebibmacro{name:bold}{#1}{#2}}{}{}
\xpretobibmacro{name:family-given}{\begingroup\usebibmacro{name:bold}{#1}{#2}}{}{}
\xpretobibmacro{name:delim}{\begingroup\normalfont}{}{}
\xapptobibmacro{name:family}{\endgroup}{}{}
\xapptobibmacro{name:given-family}{\endgroup}{}{}
\xapptobibmacro{name:family-given}{\endgroup}{}{}
\xapptobibmacro{name:delim}{\endgroup}{}{}
\renewcommand*{\boldnames}{}
\forcsvlist{\listadd\boldnames}
{{3288e5f9be7ec7c330203382f4e8d8ed}}
\begin{document}
\cite{Silva:2014a}
\printbibliography
\end{document}
Current output:

Desired output (reproduced with MS Word):



{Maciel*}– Johannes_B Dec 22 '17 at 06:21