Rust const &[u8] and &str concatenation
const NUM: i128 = 1;
// &str
const HELLO: &str = "Hello";
const RES: &str = concat!;
assert_eq!;
// bytes
const HELLO: & = b"Hello";
const RES: & = concat_bytes!;
assert_eq!;
Look at the tests for more usage examples