This worked in the first beta of Swift.
var degree = \"\\u00B0\" // degree symbol
Now I\'m getting this error and I don\'t understand what
to use a dynamically generated
extension String {
func hexToDecimal() -> String {
var myValue = self
if self.hasPrefix("0x") || self.hasPrefix("0X") {
let start = self.index(self.startIndex, offsetBy: 2)
myValue = String(self[start...])
}
var sum = 0
for num in myValue.uppercased().utf8 {
sum = sum * 16 + Int(num) - 48
if num >= 65 {
sum -= 7
}
}
return String(sum)
}
}
let unicodeValue = "80" // decimal
// or
let unicodeValue = "0x50".hexToDecimal()
if let uInt8 = UInt8(unicodeValue) {
let scalar = UnicodeScalar(uInt8)
let str = String(scalar)
}