I have a u8
slice that I would like to convert into a string, treating each u8
as the literal Unicode code point (that is, U+0000 to U+00FF).
The closest I've found is from_utf8 which would interpret the slice as UTF8, but I'm not after UTF8, but the literal code points instead.
How to do this?