Convert string to const unsigned char for display

String abc ="0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff"

const unsigned char displaydata[ ]={ '"+abc+"'}; (not working)

Is there a way to convert the string data into a const unsigned char variable or write it into the existing variable?