What is the difference between `.len()` on a `String` and counting characters a user sees?fn main() { let s = String::from("héllo"); println!("{}", s.len()); }