How to concatenate a char onto a string in Rust? May 22, 2023 by Tarik Using String::push method is the easiest method: let mut a_string = String::from("Hello World"); a_string.push('!');