DevTools.at
API Documentation
POST/api/v1/hex-text

Hex Text

Convert between hexadecimal and text

converters

Parameters

inputstring
Yes

Text or hex string

actionstring
No

'encode' or 'decode'

Default: encode

uppercaseboolean
No

Uppercase output

Default: false

Example Request

curl -X POST https://devtools.at/api/v1/hex-text \
  -H "Content-Type: application/json" \
  -d '{"input":"Hello","action":"encode"}'

Example Response

{
  "success": true,
  "data": {
    "result": "48 65 6c 6c 6f"
  },
  "meta": {
    "processingTime": 1
  }
}

Try it out

Test this endpoint directly in your browser

Response
Click "Execute Request" to see the response