I'm getting response from server and converting this response to NSDicitonary. My code is as following:
Alamofire.request("MyURL", method: .post, parameters:attributes, encoding: URLEncoding.default, headers: [:]).responseJSON {
            response in                
            switch response.result {
            case .success:
                let swiftyJsonVar = response.result.value!
                do {
                    if let dicObj = swiftyJsonVar as? NSDictionary {
                        print(dicObj)
But my issue is, one of my key having unicode character \u{20b9} and when I convert it to NSDictionary from response.result.value then it add one more slash to unicode character like \\u{20b9}.
 
    