\��� is not a valid JSON escape character, so STON���s JSON ouput is not a valid JSON string.
ston := STON toJsonString: 'element''s'. -> "element\'s"
neo := NeoJSONWriter toString: 'element''s'. -> "element's"
NeoJSONReader fromString: ston. -> invalid escape character \���
Peter