How to convert arrays like this one to a string or at least to letters? And what does 0x00, 0xCA and the like mean?
unsigned char classLoaderClass[] = {
0xCA, 0xFE, 0xBA, 0xBE, 0x00, 0x00, 0x00, 0x34... };
actually this array is ~400 rows long. If necessary, i can give full version.
UPD: i looked at some parts of java code encoded in this array and realized that i already have this class in decompiled form... how to turn .java into similar array? (I wanna change the code a little)