I have JSON string I got using from POST request.
I'm getting the post using this code:
bytecount = Request.TotalBytes
bytes = Request.BinaryRead(bytecount)
Set stream = Server.CreateObject("ADODB.Stream")
stream.Type = 1 'adTypeBinary
stream.Open()
stream.Write(bytes)
stream.Position = 0
stream.Type = 2 'adTypeText
stream.Charset = "utf-8"
s = stream.ReadText() 'here is your json as a string
stream.Close()
Set stream = nothing
Response.write(s)
The string look like this : "\u05e8\u05d5\u05e2\u05d9 \u05de\u05d6\u05e8\u05d7\u05d9" (It is in Hebrew)
How can I convert it and see it as Hebrew ? I'm not trying to view the page, I'm trying to insert it to database.