Maybe reddit’s formatting could interfere with using full unicode. Some of it could get interpreted as formatting marks, which could introduce bugs when trying to read it back.
Like, if your binary file translated into unicode happened to have {1*xF9*u in it, it would then read as {1xF9u when you go to read it back, and now you’re missing two bytes from your binary file. But since none of the hexadecimal symbols are used as formatting marks, you’re safe when using hex.
Hex is somewhat curiously an extremely poor encoding when you have access to unicode
Maybe reddit’s formatting could interfere with using full unicode. Some of it could get interpreted as formatting marks, which could introduce bugs when trying to read it back.
Like, if your binary file translated into unicode happened to have
{1*xF9*uin it, it would then read as {1xF9u when you go to read it back, and now you’re missing two bytes from your binary file. But since none of the hexadecimal symbols are used as formatting marks, you’re safe when using hex.