I have the following string :
string tt= "{\"Response\":{\"StatusCode\":200,\"StatusMessage\":\"OK\",\"Content\":{\"family\":{\"codigo\":14,\"descricao\":\"Cal\u00e7a\",\"frontoffice\":1,\"posicaofront\":31,\"posicaoprint\":26,\"fundo\":\"#c0c0c0\",\"letra\":\"#000000\",\"tipo\":0,\"loja\":14,\"subfamilies\":[{\"codigo\":60005,\"descricao\":\"Ganga\",\"familia\":14,\"fundo\":\"#c0c0c0\",\"letra\":\"#000000\",\"posicao\":0,\"loja\":\"14\",\"lastupdate\":\"2015-12-04 16:51:26\"}],\"lastupdate\":\"\",\"famzonas\":[{\"loja\":14,\"familia\":14,\"zona\":0}]}}}}";
And how much do I try to give Replace()
in "\ u00e7" to string stays the same:
tt.Replace("\u00e7", "c");
After executing this command the output remains the same:
{"Response":{"StatusCode":200,"StatusMessage":"OK","Content":{"family":{"codigo":14,"descricao":"Cal\u00e7a","frontoffice":1,"posicaofront":31,"posicaoprint":26,"fundo":"#c0c0c0","letra":"#000000","tipo":0,"loja":14,"subfamilies":[{"codigo":60005,"descricao":"Ganga","familia":14,"fundo":"#c0c0c0","letra":"#000000","posicao":0,"loja":"14","lastupdate":"2015-12-04 16:51:26"}],"lastupdate":"","famzonas":[{"loja":14,"familia":14,"zona":0}]}}}}
How can I change the "\ u00e7" to the "c" character?