fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. // покрывает все символы юникода
  6. String s = "хуйпиздаджигурда";
  7. for (int c : s.codePoints().toArray()) {
  8. System.out.println(Character.toChars(c));
  9. }
  10.  
  11. System.out.println();
  12.  
  13. // покрывает только первые 65535 символов юникода
  14. for (char c : s.toCharArray()) {
  15. System.out.println(c);
  16. }
  17. }
  18. }
Success #stdin #stdout 0.21s 320640KB
stdin
Standard input is empty
stdout
х
у
й
п
и
з
д
а
д
ж
и
г
у
р
д
а

х
у
й
п
и
з
д
а
д
ж
и
г
у
р
д
а