I am building a language, a toy language. The syntax \#0061
is supposed to convert the given Unicode to an character:
String temp = yytext().subtring(2);
Then after that try to append '\u'
to the string, I noticed that generated an error.
I also tried to "\\" + "u" + temp;
this way does not do any conversion.
I am basically trying to convert Unicode to a character by supplying only '0061'
to a method, help.