unescape_string

Pack: unicode · Endpoint: https://gateway.pipeworx.io/unicode/mcp

Unescape a string containing \uXXXX / \xNN / &#NN; / &#xNN; / percent-encoding back to plain text. Keyless, offline.

Parameters

NameTypeRequiredDescription
textstringyesThe escaped text.

Example call

Arguments

{
  "text": "\\u0048\\u0065\\u006c\\u006c\\u006f"
}

curl

curl -X POST https://gateway.pipeworx.io/unicode/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"unescape_string","arguments":{"text":"\\u0048\\u0065\\u006c\\u006c\\u006f"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('unescape_string', {
  "text": "\\u0048\\u0065\\u006c\\u006c\\u006f"
});

More examples

{
  "text": "🌍"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "unicode": {
      "url": "https://gateway.pipeworx.io/unicode/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026