Printing ... in a text box as seperate characters

Maybe a bit of a weird one:

I have a CSV file with a textbox that says: ‘Ow hello…’
I have a code (picture 2) that prints each letter of this string into a text box one by one. Everything works fine, yet it always prints the 3 dots as 1 character, but I want them separated (picture 1)

Weirder is when I print only dots ‘……’ it gives me both the 3 dots together and does the rest separately. (Picture 3)

Is there a way to always do the 3 dots as 3 separate dots?

Picture 1; Output of character that is added to the text:
afbeelding

Picture 2; Printing code:

Picture 3:

It is considering the 3 dot as Ellipsis format so as a single unicode character.
Tho am not sure how this can be fix, maybe trying to copy paste a text from another UTF-8 format.

1 Like