Skip to content

Instantly share code, notes, and snippets.

@akr4
Created July 13, 2017 06:49
Show Gist options
  • Save akr4/4312ff9ae876269a6765e1e87247455f to your computer and use it in GitHub Desktop.
Save akr4/4312ff9ae876269a6765e1e87247455f to your computer and use it in GitHub Desktop.
String a = "𠮷";
System.out.println("original: " + a);
System.out.println("length: " + a.length());
System.out.println("decoded: " + a.codePoints().mapToObj(Character::toChars).map(String::valueOf).collect(Collectors.joining(",")));
@akr4
Copy link
Author

akr4 commented Jul 13, 2017

original: XXX
length: 2
decoded: XXX

@akr4
Copy link
Author

akr4 commented Jul 13, 2017

gist にはサロゲートペアをコメントできないみたい (?) なので XXX としてますが元の文字

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment