RosettaCodeData/Task/Character-codes/Swift/character-codes-2.swift

9 lines
158 B
Swift
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let s1 = "a"
for c in s1.unicodeScalars {
println(c.value) // prints "97"
}
let s2 = "π"
for c in s2.unicodeScalars {
println(c.value) // prints "960"
}