I need to convert some text into UTF-8 This is the easiest way I have found so far: function utf8Encode theString return uniDecode(uniEncode(theString),"UTF8") end utf8Encode Is there any better way to do this? Torbjörn