Classic ASP
Classic ASP
JSON Hex Encoding
See more JSON Examples
Let's say your JSON contains content that is hex encoded like this: \u05d1\u05d3\u05d9\u05e7This example shows how to get the decoded string.
Chilkat Classic ASP Downloads
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0
s = "{ ""example"": ""\u05d1\u05d3\u05d9\u05e7"" }"
set json = Server.CreateObject("Chilkat.JsonObject")
success = json.Load(s)
' When getting the member data, it is automatically decoded.
Response.Write "<pre>" & Server.HTMLEncode( "member data: " & json.StringOf("example")) & "</pre>"
' Output:
' member data: בדיק
' When getting the full JSON, it remains encoded. This is expected and intentional.
Response.Write "<pre>" & Server.HTMLEncode( "full JSON: " & json.Emit()) & "</pre>"
' Output:
' full JSON: {"example":"\u05d1\u05d3\u05d9\u05e7"}
' To get the full JSON without the encoding, you can decode manually.
set sb = Server.CreateObject("Chilkat.StringBuilder")
success = json.EmitSb(sb)
' The hex encoding used by JSON is utf-8.
success = sb.Decode("json","utf-8")
Response.Write "<pre>" & Server.HTMLEncode( sb.GetAsString()) & "</pre>"
' Output:
' {"example":"בדיק"}
%>
</body>
</html>