Cryptography
base64_decode
يفك ترميز إدخال Base64 باستخدام Base64 decoder ويعيد البايتات المفكوكة كسلسلة Lua.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
يفك ترميز إدخال Base64 باستخدام Base64 decoder ويعيد البايتات المفكوكة كسلسلة Lua.
base64_decode(data: string): string
base64decodebase64.decodecrypt.base64.decodecrypt.base64_decodecrypt.base64decodelocal encoded = base64_encode("hello world")
local decoded = base64_decode(encoded)
print(decoded)
print(base64decode(encoded))
print(base64.decode(encoded))