I use
Alamofire.request(.GET, "http://") .responseString { _, _, string, _ in println(string) }
to make a request for receipt. The response contains Cyrillic characters, and in responseString they look like this (top right):

How do I fix the encoding?
source share