We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Why does sprintf generate a Null when sprinting extended character 253(decimal) in to a a string variable? i.e.
sprintf(s,"%s","ý");
Try "blah\x0FDblah" instead of "blahýblah". Any character with code above 127 is not guaranteed to work. Hexadecimal and octal codes were designed for that. - mike
All, Thanks for the suggestions. First time I've used the Discussion Forum and it's been a great help! I have tried Mike's solution and that works. Andrew, yes it definitely put the hex value 0xFD in to the string. Drew, I entered the code using Alt 0253 (in uV2) or Alt 253 (in uV1). Steve