Raw data encoded as Base64 with no data:...;base64, prefix.
data:...;base64,
Use this type whenever the value is just the Base64 string itself, not a full data URI string.
// Correct format:"SGVsbG8gV29ybGQ=" Copy
// Correct format:"SGVsbG8gV29ybGQ="
// Incorrect (includes a data URI scheme — not allowed):"data:text/plain;base64,SGVsbG8gV29ybGQ=" Copy
// Incorrect (includes a data URI scheme — not allowed):"data:text/plain;base64,SGVsbG8gV29ybGQ="
Raw data encoded as Base64 with no
data:...;base64,prefix.Use this type whenever the value is just the Base64 string itself, not a full data URI string.