4 lines
94 B
Text
4 lines
94 B
Text
fn main() {
|
|
let s = "文字化け"; // UTF-8
|
|
println!("Byte Length: {}", s.len());
|
|
}
|