Skip to main content

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 base64_decode

value|base64_decode
"SGVsbG8gV29ybGQ="|base64_decode    // Returns "Hello World"
"dGVzdA=="|base64_decode            // Returns "test"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 base64_decode_urlsafe

value|base64_decode_urlsafe
"SGVsbG8_V29ybGQ="|base64_decode_urlsafe    // Returns "Hello?World"
"dGVzdC1maWxl"|base64_decode_urlsafe        // Returns "test-file"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 base64_encode

value|base64_encode
"Hello World"|base64_encode    // Returns "SGVsbG8gV29ybGQ="
"test"|base64_encode          // Returns "dGVzdA=="

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 base64_encode_urlsafe

value|base64_encode_urlsafe
"Hello?World"|base64_encode_urlsafe    // Returns "SGVsbG8_V29ybGQ="
"test-file"|base64_encode_urlsafe      // Returns "dGVzdC1maWxl"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 base_convert

value|base_convert:from_base:to_base
"FF"|base_convert:"16":"10"    // Returns "255" (hex to decimal)
"1010"|base_convert:"2":"10"   // Returns "10" (binary to decimal)

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 bin2hex

value|bin2hex
"binary_data"|bin2hex    // Returns hexadecimal representation

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 bindec

value|bindec
"1010"|bindec    // Returns 10
"1100"|bindec    // Returns 12

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 create_object

keys|create_object:values
["name","age"]|create_object:["John",30]    // Returns {"name":"John","age":30}

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 create_object_from_entries

entries|create_object_from_entries
[{key:"a",value:1},{key:"b",value:2}]|create_object_from_entries    // Returns {"a":1,"b":2}

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 csv_create

value|csv_create:delimiter
[["a","b"],["c","d"]]|csv_create:","    // Returns "a,b\nc,d"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 csv_decode

value|csv_decode:delimiter
"a,b\nc,d"|csv_decode:","    // Returns [["a","b"],["c","d"]]

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 csv_encode

value|csv_encode:delimiter
[["a","b"],["c","d"]]|csv_encode:","    // Returns "a,b\nc,d"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 csv_parse

value|csv_parse:delimiter
"a,b\nc,d"|csv_parse:","    // Returns [["a","b"],["c","d"]]

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 decbin

value|decbin
"10"|decbin    // Returns "1010"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 dechex

value|dechex
"255"|dechex    // Returns "ff"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 decoct

value|decoct
"10"|decoct    // Returns "12"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 hex2bin

value|hex2bin
"68656c6c6f"|hex2bin    // Returns "hello"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 hexdec

value|hexdec
"ff"|hexdec    // Returns "255"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 json_decode

value|json_decode
'{"a":1,"b":2}'|json_decode    // Returns {a:1,b:2}

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 json_encode

value|json_encode
{a:1,b:2}|json_encode    // Returns '{"a":1,"b":2}'

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 lambda

value|lambda:expression
[1,2,3]|lambda:$$*2    // Returns [2,4,6]

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 octdec

value|octdec
"12"|octdec    // Returns "10"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_bool

value|to_bool
"true"|to_bool    // Returns true
"0"|to_bool       // Returns false

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_days

value|to_days:timezone?
"2025-10-18"|to_days    // Returns days since epoch

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_decimal

value|to_decimal
"133.45 kg"|to_decimal    // Returns 133.45

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_expr

value|to_expr
"(2 + 1) % 2"|to_expr    // Returns 1

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_hours

value|to_hours:timezone?
"2025-10-18"|to_hours    // Returns hours since epoch

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_int

value|to_int
"133.45 kg"|to_int    // Returns 133

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_minutes

value|to_minutes:timezone?
"2025-10-18"|to_minutes    // Returns minutes since epoch

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_ms

value|to_ms:timezone?
"2025-10-18"|to_ms    // Returns ms since epoch

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_seconds

value|to_seconds:timezone?
"2025-10-18"|to_seconds    // Returns seconds since epoch

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_text

value|to_text
1.344|to_text    // Returns "1.344"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 to_timestamp

value|to_timestamp:timezone?
"2025-10-18"|to_timestamp    // Returns timestamp in ms

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 url_decode

value|url_decode
"Hello%2C%20World%21"|url_decode    // Returns "Hello, World!"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 url_decode_rfc3986

value|url_decode_rfc3986
"Hello%2C%20World%21"|url_decode_rfc3986    // Returns "Hello, World!"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 url_encode

value|url_encode
"Hello, World!"|url_encode    // Returns "Hello%2C%20World%21"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 url_encode_rfc3986

value|url_encode_rfc3986
"Hello, World!"|url_encode_rfc3986    // Returns "Hello%2C%20World%21"

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 xml_decode

value|xml_decode
"<root><a>1</a><b>2</b></root>"|xml_decode    // Returns {root:{a:1,b:2}}

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 yaml_decode

value|yaml_decode
"a: 1\nb: 2"|yaml_decode    // Returns {a:1,b:2}

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 yaml_encode

value|yaml_encode
{a:1,b:2}|yaml_encode    // Returns 'a: 1\nb: 2\n'