In PHP, I can call base64_encode(\"\\x00\". $username. \"\\x00\". $password) and the \"\\x00\" represents a NULL character.
base64_encode(\"\\x00\". $username. \"\\x00\". $password)
\"\\x00\"
Now, in Objecti
Not quite sure why this works, but instead of using @"%c" as the format string with '\0', try using @"%@" as the format string with @"\0"