Aliaslar
base64encodebase64.encodecrypt.base64.encodecrypt.base64_encodecrypt.base64encode
Argümanlar
string
gerekli
Base64 encoder icine aktarilan Lua string byte degerleri.
Dönüşler
string
Lua string olarak dondurulen Base64 ciktisi.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Lua string byte degerlerini Base64 encoder ile encode eder, = padding kullanir ve satir sonu eklemez.
base64_encode(data: string): string
base64encodebase64.encodecrypt.base64.encodecrypt.base64_encodecrypt.base64encodelocal encoded = base64_encode("hello world")
print(encoded)
print(base64encode("hello world"))
print(base64.encode("hello world"))