Index: src/org/openstreetmap/josm/gui/help/HelpContentReader.java
===================================================================
--- src/org/openstreetmap/josm/gui/help/HelpContentReader.java	(revision 2897)
+++ src/org/openstreetmap/josm/gui/help/HelpContentReader.java	(working copy)
@@ -52,7 +52,7 @@
             url = new URL(helpTopicUrl);
             con = (HttpURLConnection)url.openConnection();
             con.connect();
-            in = new BufferedReader(new InputStreamReader(con.getInputStream()));
+            in = new BufferedReader(new InputStreamReader(con.getInputStream(),"utf-8"));
             return prepareHelpContent(in);
         } catch(MalformedURLException e) {
             throw new HelpContentReaderException(e);
