Possible Duplicate:
Hyperref: Scandinavian characters (æø) don't work in \url, hyperlink is wrong
Consider the following example:
\documentclass[a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[danish]{babel}
\usepackage{url}
\usepackage{hyperref}
\begin{document}
\url{http://da.wikipedia.org/wiki/Topologi}
\url{http://da.wikipedia.org/wiki/Topologisk_rum}
\url{http://da.wikipedia.org/wiki/Åben_mængde}
\url{http://da.wikipedia.org/wiki/Homøomorfi}
\url{http://da.wikipedia.org/wiki/Hausdorffrum}
\end{document}
When not using hyperref the result comes out as expected. Adding hyperref gives me something similar to
http://da.wikipedia.org/wiki/Åben_m\T1\aengde
anyone have any idea how to fix this? There is nothing wrong with the URL.
a-zA-Z0-9and some special characters$,-,_,.,+,!,*,',(,),","where the","represents a,. Other characters can be encoded using% hex hexwherehexfollows0-9[A-F|a-f]. Apparently this RFC is no longer used? – Roelof Spijker Oct 31 '11 at 10:25\href{http://da.wikipedia.org/wiki/%C3%85ben_m%C3%A6ngde}{http://da.wikipedia.org/wiki/Åben_mængde}instead. You have to encode the URL, for example using the W3 URL encoder. – matth Nov 10 '11 at 15:49