1.8 URI Encoding

<..char encodings..>
 char alpha = (char) Integer.parseInt( "2192", 16);
 char beta  = (char) Integer.parseInt( "FE38", 16);
 String s =
     "http://The."
   + URLEncoder.encode( alpha + " + " + beta , "utf-8" )
   + ".host/"
   + URLEncoder.encode( "@!?" , "utf-8" )
   + ".html"
   ;
 System.out.println( s );
 URL url = new URL( s );
 //...
 s = URLDecoder.decode( "%40%41%42%43%21" , "utf-8" );
 System.out.println( s );
-_-_-
http://The.%E2%86%92+%2B+%EF%B8%B8.host/%40%21%3F.html  
@ABC!