📅  最后修改于: 2022-03-11 14:56:24.249000             🧑  作者: Mango
let hello = "नमसà¥à¤¤à¥";
// Characters
for c in hello.chars() {
println!("{}", c);
}
// Bytes
for b in hello.bytes() {
println!("{}", b);
}