Contact: aviboots(AT)netvision.net.il
35,943 questions
46,995 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 */