Encode text to Base64, or decode a mystery string to see what is actually inside it.
ad space, reserved
How do I decode a Base64 string safely?
In JavaScript use atob(encodedString), or Buffer.from(str, "base64").toString("utf-8") in Node. Or use the free decoder on this site, which never sends the string anywhere.