Adding an encoded string to an http resonse seems to replace some characters with !F(MISSING). How that that be prevented?
Output:
{\"encodedText\":\"M6c8RqL61nM
It appears to be escaping it normally, can you paste some code?
http://play.golang.org/p/rUEGn-KlTX
package main import ( "fmt" "net/url" ) func main() { escape := url.QueryEscape("M6c8RqL61nMFy/hQmciSYrh9ZXgVFVjO") fmt.Println(escape) }