Hi,
We have some REST API's that accept JSON body. We are using this library to prevent and HTML content being passed as Strings in the JSON body.
The problem that we are facing is that we also support Internationalized characters. The library seems to work for most of the Multi-Byte characters but fails beyond a certain range.
for. e.g:
1) "𐌸" ==> "𐌸"
2) "中文" ==> "中文"
Because of this we are having issues supporting Internationalized characters. Is there a way to fix this where we receive the same multi-byte character back post sanitization.
Regards,
Kevin