Hi,
I am using TextEncoder transformer to transform string into URL coded text. String is UTF-8 and have some Balkan letters (?, ž, ?, š) and this is where problems start.
For example word Kolašin TextEncoder translates into Kola%C3%85%C2%A1in but right way is Kola%C5%A1in. Is this some bug in TextEncoder or I am doing something wrong?
TextEncoder is set to encoding type URL(Percent encoding).
Maybe TextEncoder is not what I need at all so any suggest would be appreciated.