Change the type of encoding of a received text for another desired encoding.

1 net.URLEncoder.encode

<net.URLEncoder.encode encoding='encoding'>
    <text /> !
</net.URLEncoder.encode>
Example
Copy
<xsql-script name='net_LocalHostName1'>
    <body>
        <println>
            <net.URLEncoder.encode encoding='UTF-8'>
                <string>TEST TEXT: this is the text you want to convert to UTF-8</string>
            </net.URLEncoder.encode>
        </println>
    </body>
</xsql-script>

Notas

The text converted to the indicated encoding will be shown on screen.