![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Example: Crypt2.EncodeString methodDemonstrates how to call the EncodeString method.
integer li_rc oleobject loo_Crypt string s loo_Crypt = create oleobject li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") if li_rc < 0 then destroy loo_Crypt MessageBox("Error","Connecting to COM object failed") return end if s = "Hello World" Write-Debug loo_Crypt.EncodeString(s,"utf-8","hex") // Output: 48656C6C6F20576F726C64 Write-Debug loo_Crypt.EncodeString(s,"utf-16","hex") // Output: 480065006C006C006F00200057006F0072006C006400 Write-Debug loo_Crypt.EncodeString(s,"utf-8","base64") // Output: SGVsbG8gV29ybGQ= s = "électricité" Write-Debug loo_Crypt.EncodeString(s,"utf-8","hex") // Output: C3A96C6563747269636974C3A9 Write-Debug loo_Crypt.EncodeString(s,"windows-1252","hex") // Output: E96C6563747269636974E9 Write-Debug loo_Crypt.EncodeString(s,"windows-1252","hex_lower") // Output: e96c6563747269636974e9 Write-Debug loo_Crypt.EncodeString(s,"utf-8","url") // Output: %C3%A9lectricit%C3%A9 destroy loo_Crypt |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.