How to convert an Int to a Character in Swift
You can’t convert an integer directly to a Character instance, but you can go from integer to UnicodeScalar to Character and back again: let startingValue = Int((“A” as UnicodeScalar).value) // 65 for i in 0 ..< 26 { print(Character(UnicodeScalar(i + startingValue))) }