My Image URL contains a Greek word. like URL http://example.com/ΥΠΗΡΕΣΙΕΣ.jpg, URL class give me nil value
my code
if let url = URL(string: "http://example.com/ΥΠΗΡΕΣΙΕΣ.jpg"){
      //Image Download 
}
else{
     NSLog("invalidURL")
}
how can i create a URL Object to download this images.
 
     
     
    