Sherzod Posted July 10, 2014 Posted July 10, 2014 How to store other languages (unicode) in cookies and get it back again var cookieValue = document.getElementsByTagName('input')[0].value; document.cookie = "lboxcook=" + encodeURIComponent(cookieValue); function get_cookie(cookie_name) { var results = document.cookie.match ('(^| ?' + cookie_name + '=([^;]*)(;|$)'); return results ? decodeURIComponent(results[2]) : null; } Farshad, I think in the future, by default, you can use this approach when saving cookies Sincerely. 2
Juugii Posted May 30, 2018 Posted May 30, 2018 Unicode write read cookie uses System.NetEncoding //write cookie UniApplication.Cookies.SetCookie(CookieName,CookieValue, 0, False, False, ''); //read cookie strval=TNetEncoding.Base64.decode(UniApplication.Cookies[CookieName]);
Recommended Posts