I need to refer multiple times in the text to the same footnote with hyperref support. This can be achieved using the cleveref package, as explained in this answer. My problem is that I would also like to use symbols instead of numbers as footnote markers. I tried to follow the suggestions given in the first two answers to this this question, but the code did not compile.
Here is a minimal working example. I would like to use an asterisk in place of the number 1. Can anybody help me, please?
\documentclass[12pt]{article}
\usepackage{hyperref}
\usepackage{cleveref}
\crefformat{footnote}{#2\footnotemark[#1]#3}
\begin{document}
Here I have a footnote\footnote{\label{first}Footnote text.}.
Here I have the same footnote\cref{first}.
\end{document}

