System.out.println("new String(word.getBytes(" + decoding + ")," + encoding + ") = " + new String(word.getBytes(decoding), encoding));
System.out.println("URLDecoderUtil.decode(word," + decoding + ") = " + URLDecoderUtil.decode(word, decoding));
System.out.println("URLDecoder.decode(word, " + decoding + ") = " + URLDecoder.decode(word, decoding));
System.out.println("URLDecoderUtil.decode(word," + encoding + ") = " + URLDecoderUtil.decode(word, encoding));
System.out.println("URLDecoder.decode(word, " + encoding + ") = " + URLDecoder.decode(word, encoding));
System.out.println("URLDecoderUtil.decode(word," + encoding + ") = " + URLDecoderUtil.decode(new String(word.getBytes(encoding), encoding), encoding));
System.out.println("URLDecoder.decode(word, " + encoding + ") = " + URLDecoder.decode(new String(word.getBytes(encoding), encoding), encoding));
System.out.println("new String(word.getBytes(" + decoding + ")," + encoding + ") = " + new String(URLDecoderUtil.decode(word, encoding).getBytes(encoding), encoding));
System.out.println("new String(word.getBytes(" + decoding + ")," + encoding + ") = " + new String(URLDecoder.decode(word, encoding).getBytes(encoding), encoding));
System.out.println("new String(word.getBytes(" + decoding + ")," + encoding + ") = " + new String(URLDecoder.decode(word, encoding).getBytes(encoding), encoding));