HttpUtility.UrlEncodeUnicode(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncode(String).
Converts a string into a Unicode string.
public:
static System::String ^ UrlEncodeUnicode(System::String ^ str);
public static string? UrlEncodeUnicode (string? str);
[System.Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncode(String).")]
public static string? UrlEncodeUnicode (string? str);
[System.Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncode(String).")]
public static string UrlEncodeUnicode (string str);
public static string UrlEncodeUnicode (string str);
static member UrlEncodeUnicode : string -> string
[<System.Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncode(String).")>]
static member UrlEncodeUnicode : string -> string
Public Shared Function UrlEncodeUnicode (str As String) As String
Parameters
- str
- String
The string to convert.
Returns
A Unicode string in %UnicodeValue
notation.
- Attributes
Remarks
If characters such as blanks and punctuation are passed in an HTTP stream, they might be misinterpreted at the receiving end. URL encoding converts characters that are not valid in a URL to character-entity equivalents; URL decoding reverses the encoding. For example, when embedded in a block of text to be transmitted in a URL, the characters < and > are encoded as %3c and %3e.