I was researching why my query parameters have plus + signs in it instead of %20 and why they have strings like %C3%BC instead of a ü
+
%20
%C3%BC
There is no difference between + and %20 when it comes to Query string parameters:
SPACE is encoded as '+' or '%20'
Quote reference