I have a problem I couldn\'t find a solution to. I have a string variable holding the unicode \"1f44d\" and I want to convert it to a unicode character
You can use
let char = "-12" print(char.unicodeScalars.map {$0.value }))
You'll get the values as:
[45, 49, 50]