Pointed out by @shepmaster in https://github.com/rust-lang/miri/issues/1309#issuecomment-610365682: when putting ```rust fn main() { let s = unsafe { std::str::from_utf8_unchecked(&[139, 50]) }; println!("{}", s); } ``` into a cargo project and doing `cargo run -q` vs `cargo miri run -q`, the output in raw bytes differs: ``` $ xxd run 00000000: 8b32 0a $ xxd miri 00000000: efbf bd32 0a ``` Looks like the "8b" turns into "ef bf bd".