title is almost self explanatory; how can I use Aramaic/Syriac writing for C/C++ variable identifiers.
Example: char *ܫܠܡܐ = "Hello World";
I tried -fextended-identifiers compiler flag but it didn't work.
I'm asking because Visual Studio allows me to do this, even with #define identifiers, but I want to use this on linux and on GCC. What should I do?
EDIT: This question was marked as duplicate of an older question but this is not a duplicate on the basis that I'm using a different language/alphabet system rather than symbols. Secondly, this question pertains more to gcc for C rather than g++.