I am having trouble converting a hex string that is inputted by the user (i.e. "1F436") to a unicode character I can work with.
From reading the Swift documentation, I learned how to print unicode characters using 'print(\u{1F436})' and how to to figure out the decimal value of unicode characters in a string by using for-in loops.
But how do I go about creating a unicode character variable from a string that contains its hexadecimal number?