base64-encode
Convert any text string into Base64 format for secure data transmission or storage using this straightforward encoding tool.
Instructions
Encode text to Base64
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Text to encode to Base64 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "Text to encode to Base64",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}