Convert a string to hex array for use in your C source code
Hi-Tech PICC-18 compiler:
const char YourVariableNameHere[0] = { 0x };
Microchip C18 compiler:
const rom char YourVariableNameHere[0] = { 0x };
Other C compiler:
char YourVariableNameHere[0] = { 0x };