Change the font of \copyright in beamer document

beamercopyrightfonts

The default \copyright command produces a surprisingly ugly symbol as soon as you use the beamer package:

ugly symbol

Is there a way to change it, e.g. to the one that is used in the article class?

A MWE is very short:

\documentclass{beamer}
\begin{document}
\copyright
\end{document}

Best Answer

How about changing the font theme to serif?

enter image description here

\documentclass{beamer}
\usefonttheme{serif} %% <---
\begin{document}
are \copyright\ Sven
\end{document}

The font family of \copyright can be changed as follows:

\documentclass{beamer}
\newcommand{\myfont}[1]{{\fontfamily{serif}#1}}
\begin{document}
are \myfont{\copyright} Sven
\end{document}

enter image description here