You'll want to convert your buffer to a string. ```rust let buffer = // ... let my_str = core::str::from_utf8(&buffer).unwrap(); ``` This unwrap can go wrong if your buffer contains data that is not utf8. All valid 7-bit ascii is valid utf8. This string you get also only lives as long as your buffer does