Unicode Archives : Binary Bits https://blog.binarybits.net/tag/unicode/ Bits & Pieces - A blog by Kannan Balasubramanian Wed, 17 May 2017 07:54:51 +0000 en-GB hourly 1 https://wordpress.org/?v=6.5.2 Decoding Query String with Unicode Characters https://blog.binarybits.net/decoding-query-string-with-unicode-characters/ https://blog.binarybits.net/decoding-query-string-with-unicode-characters/#respond Fri, 31 Jul 2015 09:35:42 +0000 https://blog.binarybits.net/?p=719 Recently I came across an issue where the query string had unicode characters and ASP.NET’s “HttpUtility.UrlDecode” was not properly converting the characters. After searching few minutes came across the following solution posted by cjsharp1 at Stackoverflow. private string GetQueryStringValueFromRawUrl(string queryStringKey) { var currentUri = new Uri(HttpContext.Current.Request.Url.Scheme + "://" + HttpContext.Current.Request.Url.Authority + HttpContext.Current.Request.RawUrl); var queryStringCollection = […]

The post Decoding Query String with Unicode Characters appeared first on Binary Bits.

]]>
Recently I came across an issue where the query string had unicode characters and ASP.NET’s “HttpUtility.UrlDecode” was not properly converting the characters. After searching few minutes came across the following solution posted by cjsharp1 at Stackoverflow.

private string GetQueryStringValueFromRawUrl(string queryStringKey)
{
    var currentUri = new Uri(HttpContext.Current.Request.Url.Scheme + "://" + 
        HttpContext.Current.Request.Url.Authority + 
        HttpContext.Current.Request.RawUrl);
    var queryStringCollection = HttpUtility.ParseQueryString((currentUri).Query);
    return queryStringCollection.Get(queryStringKey);
}

The post Decoding Query String with Unicode Characters appeared first on Binary Bits.

]]>
https://blog.binarybits.net/decoding-query-string-with-unicode-characters/feed/ 0