Java tutorial
//package com.java2s; import android.util.Log; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; public class Main { private static final String TAG = "wiki_leaps"; public static String parseUnicodeString(String source) { try { source = URLDecoder.decode(source, "UTF-8"); } catch (UnsupportedEncodingException e) { Log.e(TAG, e.getMessage()); e.printStackTrace(); } return source; } }