Is there a way to label a \footnotemark instance (without redefining the \footnotemark macro)? Labeling the \footnotemark has no effect (it labels whatever environment the command is invoked from) and labeling its corresponding \footnotetext is not guaranteed to produce the correct number (it merely returns the current value of the default footnote counter). See below:
\documentclass{article}
\usepackage[colorlinks=true,urlcolor=red,hyperfootnotes=false]{hyperref}
\begin{document}
This text is footnoted\footnotemark\label{fnm:1} \footnotemark\label{fnm:2}
\footnotetext{Footnote `1'\label{fnt:1}.}%
\footnotetext{Footnote `2'\label{fnt:2}.}%
The numbers of the labels: %
\{\ref{fnm:1}, \ref{fnt:1}, \ref{fnm:2}, \ref{fnt:2}\}
The sequence should read: \{1, 1, 2, 2\}
\end{document}
Output:

Labeling a \footnote is trivial as one can simply call the \label command from within the footnote environment. However, LaTeX does not appear to support labeling of a \footnotemark. Please advise if there is an efficient solution to label a \footnotemark. Thank you.

hyperreflink take you to the footnote, or to the footnotemark? Why do you want to use\footnotemarkand\footnotetextinstead of\footnote{Footnote 1\label{fn:1}}? – Jake Dec 20 '11 at 03:08\footnotemarkis placed. This way, I can place a series of footnotemarks, label each one with a number that corresponds to the footnote counter (e.g.,\arabic{footnote}), and then subsequently print the corresponding\footnotetextwith the appropriate number by referencing (\ref) the corresponding\footnotemark. The reason I wish to avoid the strategy you mentioned is that I intend to use footnotes within footnotes and the only way I know to achieve this is to place footnotemarks. Thanks. – user001 Dec 20 '11 at 03:18