Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
import Foundation var ch: Character = "A" var hex: String = String(format: "%02X ", ch.asciiValue!) print("The hexadecimal value of", ch, "is:", hex) /* run: The hexadecimal value of A is: 41 */