fn main() { let mut s:&str = "Hello, world! 🥰🇺🇸"; for c in s.chars() { println!("{}", c); } }