I am copying part of the string URL from text field and it gets copied properly. However when I add this to URL bar of chrome or firefox or infact a notepad, it adds "%E2%80%8B" after the string. For example
www.localhost.com/token.php?tokenNumber=1234asd%E2%80%8B
Why does this happen and how do I avoid this?
public Text token;
public string myToken;
public void GeneratedURL() {
myToken = token.text;
string url = "www.localhost/token.php?tokenNumber=" + myToken;
}