0

While working on HTML pages, some words(umlauts) within page are converted into some symbols as shown below:

"m�ssen" actual word "müssen".
"regelm��ig �berpr�ft" actual word "regelmäßig überprüft".
"F�rderung" actual word "Förderung".

Can anyone please help me out. It would be great help. How can i convert all such words using any language/script. Thanks in advance.

1 Answers1

0

you can do something like,

NSString *utf = [yourString stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

refer this link for more detail.

hope this will help :)

Community
  • 1
  • 1
Ketan Parmar
  • 27,092
  • 9
  • 50
  • 75