Discuss this help topic in SecureBlackbox Forum

PunycodeDecode

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Decodes a punicode string to unicode.

Declaration

[C#]
    string PunycodeDecode(string Input);

[VB.NET]
    Function PunycodeDecode(ByVal Input As String) As String

[Pascal]
    function PunycodeDecode(const Input : string) : UnicodeString { WideString };

[C++]
    void PunycodeDecode(const std::string & Input, std::wstring & OutResult);

[Java]
    not available

[PHP]
    not available

Parameters

  • Input - the punicode string to be decoded.

Return value

    Returns the unicode string.

Description

    Call this function to decode a punicode string to unicode.

Declared in

.NET:
  • Namespace: SBPunycode
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBPunycode
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbpunycode.h

See also:     PunycodeEncode     ToASCII     ToUnicode    

Discuss this help topic in SecureBlackbox Forum