文本

Base64 解码

0次调用
免费接口

这是一个简单实用的 Base64 解码工具。

POST
uapis.cn
/api/v1/text/base64/decode
Body
text
string
required

text field

功能概述

你提供一个 Base64 编码的字符串,我们帮你解码成原始的 UTF-8 文本。

请求体

text
string必填

响应

200 / 请求成功

成功响应

JSON
{
  "decoded": "hello world"
}

400 / 错误的请求

无效的请求参数或解码失败

JSON
{
  "code": "DECODING_FAILED",
  "details": {},
  "message": "Invalid Base64 input."
}