Categories
How to decode json C# encoding "\\u2605 Flip Knife"?
example \\u2605 Flip Knife \uXXXX Tried 2 different methods without success.
\\u2605 Flip Knife
Answer the question
In order to leave comments, you need to log in
Found solutions to the problem of decoding (decoding) \uXXXX
var str = @"ESPA\u00d1A - Espa\u2122"; str = str.Replace("\\\\", "\\"); //Replace // -> / Console.WriteLine("Docode: " + System.Text.RegularExpressions.Regex.Unescape(str));
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question