My code is
\documentclass[14pt]{beamer}% http://ctan.org/pkg/beamer
\let\Tiny\tiny% http://tex.stackexchange.com/q/58087/5764
\usetheme{Berkeley}
\usepackage[timeinterval=1]{tdclock}
\makeatletter
\beamer@headheight=1.5\baselineskip
\makeatother
\setbeamercolor{normal text}{bg=black!10}
\begin{document}
\title[Title]{My title%
\thanks{\scriptsize Project supported by foundation: }} %<<----this place
\subtitle{Subtitle}
\author{Author}
\institute[Institute]{My institute}
\date[\initclock\tdtime]{\today}
\logo{\color{blue!50}\scalebox{2}{\TeX}} % you can % it
\begin{frame}
\titlepage
\end{frame}
\section{A section}
\subsection{A subsection}
\begin{frame}
\frametitle{Frame title}
\framesubtitle{frame subtitle}
Some text
\end{frame}
\begin{frame}
Some more text
\end{frame}
\section{Another section}
\subsection{Another subsection}
\begin{frame}
Some final text
\end{frame}
\end{document}
I want to change the 1 to, for example, \aleph like below. How can I do this? thanks for advance.

\renewcommand{\thefootnote}{\alph{footnote}}? – karlkoeller Nov 23 '13 at 10:20