I think you must URL-encode the query parameters before sending the request to the server.
For example, the Arabic character "أ" (U+0623) should be percent-encoded as %D8%A3.
%D8%A3
So instead of idNo=2/أ, send idNo=2/%D8%A3.
idNo=2/أ
idNo=2/%D8%A3