I wanted to convert a ascii to a char. If that is what I think.
I want to convert something like u03C0 to the actual symbol, which is PI.
Can this be done with control characters too? Like u206C?
Put a control character in a char or a string. Can I do this?
You can convert the hex string to a
long
and to achar
form there:You can strip the
u
however you like - usingReplace
,Substring
, etc.