<div dir="ltr">For those tracking the unicode issue, could you please verify the problem does not present in my JsonTools library on compiler revisions and platforms? I always get true (passed) with my library, but not with any other library. Here is the relevant test:<div><br></div><div>function VerifyUnicodeChars: Boolean;<br>const<br> UnicodeChars = '{ "name": "Joe®Schmoe", "occupation": "bank teller \u00Ae " }';<br>var<br> N: TJsonNode;<br>begin<br> N := TJsonNode.Create;<br> N.Parse(UnicodeChars);<br> Result := (N.Child(0).AsString = 'Joe®Schmoe') and (N.Child(1).AsString = 'bank teller ® ');<br> N.Free;<br>end;<br></div><div><br></div><div>begin<br> WriteLn('Handles unicode characters correctly: ', VerifyUnicodeChars);<br>end.<br></div></div>