> ## 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.

# base64_decode

> Base64 girdisini Base64 decoder ile decode eder ve decode edilen byte degerlerini Lua string olarak dondurur.

<div className="real-function-page">
  ```lua theme={null}
  base64_decode(data: string): string
  ```

  ## Aliaslar

  * `base64decode`
  * `base64.decode`
  * `crypt.base64.decode`
  * `crypt.base64_decode`
  * `crypt.base64decode`

  ## Argümanlar

  <ParamField path={"data"} type={"string"} required>
    Base64 decoder icine aktarilan Base64 girdisi.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"decoded"} type={"string"}>
    Acik uzunlukla Lua string olarak dondurulen decode edilmis byte degerleri.
  </ResponseField>

  ## Örnek

  Base64 verisini decode et ve dondurulen Lua string degerini oku.

  ```lua theme={null}
  local encoded = base64_encode("hello world")
  local decoded = base64_decode(encoded)

  print(decoded)
  print(base64decode(encoded))
  print(base64.decode(encoded))
  ```
</div>
