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

5 lines
124 B
Swift
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let c1: UnicodeScalar = "a"
println(c1.value) // prints "97"
let c2: UnicodeScalar = "π"
println(c2.value) // prints "960"