I am url encoding a string of text to pass along to a function. However, it encodes the second space in a double-space as \"%A0\". This means that when I decode the string
A quick Googling shows that %A0 is the non-breaking space character or in html. A + is the form-encoding for a standard space character.
%A0
+
Source