UiPath writes lower case ü instead of upper case Ü

When I read one field and type the text into another field the “Ü” is changed to “ü”.
The word should be HÜRLIMANN and it is HüRLIMANN
Any way to circumvent this?

1 Like

@Jizh

I have never faced this situation, bit strange though. But you can use ToUPPER function while writing.

variable.toupper()

3 Likes

If you want everything in the upper case, invoke ToUpper

yourword.ToUpper.ToString

3 Likes

Thanks, it might be because it is a German Umlaut.

2 Likes

I have noticed a similar issue:
Upper case Umlaut (Ü, Ä, Ö) become lower case if using the Type into activity inside Use Application/Browser (modern design). However, this only happens if selecting the properties “Hardware Events” or “Windows Messages”. It will type correctly when “Simulate” is selected.