Using pdflatex and bibtex, this code gives me a spurious percent symbol.
\documentclass[twocolumn]{article}
\usepackage{url}
\begin{document}
hello \cite{hello}.
\bibliographystyle{plain}
\bibliography{android}
\end{document}
bib entry:
@misc{hello,
author={{John Smith}},
title={My Title},
note={\url{http://tex.stackexchange.com/questions/4213/how-to-deal-with-bibliography-items-containing-long-urls}},
}
Rendered doc:

Note the '%' at the end of third line. How to fix it?