As stated in Apple Docs:
An arbitrary Unicode scalar, written as \u{n}, where n is a 1–8 digit hexadecimal number with a value equal to a valid Unicode code point
let dollarSign = "\u{24}" // $, Unicode scalar U+0024
my question is if I have the hexadecimal digit how could I turn it into string. So if I have the following :
let dollarSignHex = 24
How can I map it to let dollarSignString = ????