Cookie value stored in UTF8 Encoded value Wuce%C3%B1o. Acutual value is Wuceño. How to convert the encoded value in decode to get Wuceño in c#?
            Asked
            
        
        
            Active
            
        
            Viewed 161 times
        
    1 Answers
0
            
            
        Try WebUtility.UrlDecode:
    string s = WebUtility.UrlDecode("Wuce%C3%B1o");
    string s = HttpUtility.UrlDecode("Wuce%C3%B1o");
 
    
    
        AlexD
        
- 32,156
- 3
- 71
- 65
