Programming Reference Manual
 
Syntax
 
string = stringclassoject.toUTF8
 
Description
Returns the UTF-8 encoded version of the StringClass variable
 
See Also
Example
 
Sub Main
 
   Dim myStr As New StringClass
  
   myStr.Append "Türkiye"
 
   Debug.Print myStr.toUTF8   'Türkiye
 
End Sub