Skip to main content

/images/icons/xs_temp.svg base64_decode

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

/images/icons/xs_temp.svg base64_decode_urlsafe

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

/images/icons/xs_temp.svg base64_encode

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

/images/icons/xs_temp.svg base64_encode_urlsafe

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

/images/icons/xs_temp.svg 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)

/images/icons/xs_temp.svg bin2hex

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

/images/icons/xs_temp.svg bindec

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

/images/icons/xs_temp.svg create_object

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

/images/icons/xs_temp.svg 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}

/images/icons/xs_temp.svg csv_create

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

/images/icons/xs_temp.svg csv_decode

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

/images/icons/xs_temp.svg csv_encode

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

/images/icons/xs_temp.svg csv_parse

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

/images/icons/xs_temp.svg decbin

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

/images/icons/xs_temp.svg dechex

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

/images/icons/xs_temp.svg decoct

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

/images/icons/xs_temp.svg hex2bin

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

/images/icons/xs_temp.svg hexdec

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

/images/icons/xs_temp.svg json_decode

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

/images/icons/xs_temp.svg json_encode

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

/images/icons/xs_temp.svg lambda

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

/images/icons/xs_temp.svg octdec

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

/images/icons/xs_temp.svg to_bool

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

/images/icons/xs_temp.svg to_days

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

/images/icons/xs_temp.svg to_decimal

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

/images/icons/xs_temp.svg to_expr

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

/images/icons/xs_temp.svg to_hours

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

/images/icons/xs_temp.svg to_int

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

/images/icons/xs_temp.svg to_minutes

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

/images/icons/xs_temp.svg to_ms

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

/images/icons/xs_temp.svg to_seconds

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

/images/icons/xs_temp.svg to_text

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

/images/icons/xs_temp.svg to_timestamp

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

/images/icons/xs_temp.svg url_decode

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

/images/icons/xs_temp.svg url_decode_rfc3986

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

/images/icons/xs_temp.svg url_encode

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

/images/icons/xs_temp.svg url_encode_rfc3986

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

/images/icons/xs_temp.svg xml_decode

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

/images/icons/xs_temp.svg yaml_decode

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

/images/icons/xs_temp.svg yaml_encode

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