Hi
I think you just need to encode and decode the text properly, you should do something like this:
1. Invoke your search with text decoded
search?model=coup%C3%A9
Then in your Java code, you could use something like this to decode:
String result = java.net.URLDecoder.decode(url, StandardCharsets....