In textbox1 user enters string "Test\u0021Test" and I would like to convert escaped character "\u0021" to "!"
string x = "Test\u0021Test"; // this is easy
string y = textbox1.Text; // here textbox1.Text = "Test\u0021Test" and this I don't know how to convert
Thanks for help
EDIT Answered by @Simo Erkinheimo Allow user to enter escape characters in a TextBox