I'm guessing this is the most obvious way: ```rust use heapless::{Vec, String}; let test: String<4> = String::from_utf8(Vec::from_slice(&[0x42, 0x84, 0x22, 0x20]).unwrap()).unwrap(); ```