To convert a numeric decimal value x in the range of 97 to 122 into an NSString
representing that ASCII character, on can simply call:
[ NSString stringWithFormat: @"%c", x ]
How does one create an NSString for non-ASCII characters such as:
ä , è , ñ , à , é , ç , ĝ , ŝ , š , ĥ , þ , ð , ĵ , ü , ś , ź , ż
from a strictly numeric input value? (e.g. decimal UInt32
, and not copied from or requiring any other NSString
, Objective-C, or Core Foundation data type in a lookup table).
Is there some online tool that will look up whatever magic decimal numeric values (UTF-foo?) are require for each character?