字符串反转 Reverse string
static String reverse(String str) { return String.fromCharCodes(str.runes.toList().reversed); }