(PowerShell) Set Default to utf-8 instead of ANSI
This example shows how to set the default charset (character encoding) to utf-8. By default, strings passed to Chilkat are interpreted as ANSI, and strings returned by Chilkat are ANSI. The Chilkat.Global.DefaultUtf8 property can be set to tell Chilkat that all strings passed in are utf-8, and to return all strings as utf-8.
Add-Type -Path "C:\chilkat\ChilkatDotNet47-9.5.0-x64\ChilkatDotNet47.dll"
# To tell Chilkat to use interpret passed-in strings as utf-8, and to return utf-8,
# simply set the DefaultUtf8 property = $true.
# The glob object may be discarded after setting the property. The setting
# will apply to all existing Chilkat objects, and all Chilkat objects to be created afterwards.
$glob = New-Object Chilkat.Global
$glob.DefaultUtf8 = $true
|