I've got an array of Characters in swift:
static let charArray: [Character] = [ "S", "t", "r", "i", "n", "g"]
And I'd like to do some bitwise operations on each Character as a byte (UInt8). How do I convert charArray[0] to UInt8, for example?