I would like to create a macro to convert a variable string into the UNICODE (16 bits).
Example:
#define UNICODE ("xyz") - It will return 0,'x',0,'y',0, z at compilation time.
The size of parameter to the macro can be any length.
Thanks for helping