fork download
  1. import static java.util.stream.Collectors.*;
  2.  
  3. class Ideone {
  4. public static void main (String[] args) {
  5. String str = "(안녕하세요.)";
  6. str = str.chars().mapToObj(c -> String.format("\\u%04x", c)).collect(joining());
  7. System.out.println(str);
  8. }
  9. }
  10.  
Success #stdin #stdout 0.11s 43176KB
stdin
Standard input is empty
stdout
\u0028\uc548\ub155\ud558\uc138\uc694\u002e\u0029