> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# json.unescape

> Escaped string content veya complete quoted JSON string literal icinden JSON string escape sequences decode eder. Girdi full JSON document olarak degil, JSON string parser ile parse edilir.

<div className="real-function-page">
  ```lua theme={null}
  json.unescape(text: string): string
  ```

  ## Argümanlar

  <ParamField path={"text"} type={"string"} required>
    Escaped JSON string content veya first and last bytes degerleri quotes olan complete quoted JSON string literal. Function bu argument degerini string type checking ile okur.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"text"} type={"string"}>
    Decoded string. Supported escapes: ", \\, /, \b, \f, \n, \r, \t ve surrogate-pair handling ile \uXXXX. Invalid escapes, unescaped control characters, unterminated strings ve quoted literal sonrasi trailing characters near-position suffix ile Luau error firlatir.
  </ResponseField>

  ## Örnek

  Escaped content veya quoted JSON string literal icinden JSON string escapes decode eder.

  ```lua theme={null}
  local escaped = json.escape("Real Docs" .. string.char(10) .. "Docs")
  local restored = json.unescape(escaped)

  print(restored)
  ```
</div>
