[Solved] How to convert "Bytecode" to ASCII
Hi, guys! How are you? Is it possible to translate bytecode into ASCII characters? With "bytecode" - I don't know if the name is the correct one - I mean the data transferred in packets from the low level protocols. Ex: 47 45 54 20 2f 20 48 54 54 50 2f 31 2e 31 I am starting my studies in networks and I have been trying to create a translator. I've already managed - I imagine - to transform ASCII into bytecode, but I'm having problems with the opposite. I can't think of a way to turn a byte (eg, 0x47) into anything that will allow me to convert it to a character. My progress so far: https://code.sololearn.com/ck6BbSIAF13c/#py (Sorry for not attaching the code, I'm using the desktop version of the site.) I am also avoiding using any external library in order to understand how it works from the bottom up.