OCLOperators Base64ToString
Created by Stephanie on 2025-01-08 · Last edited by Vale.buyondo on 2026-01-10.
The Base64ToString operator decodes a Base64 encoded string back into a human-readable string using UTF-8 encoding.
This operator is essential when interfacing with external systems or APIs that transmit text data in Base64 format to ensure data integrity during transport
Syntax
string->Base64ToString
Validation in Debugger
'TURyaXZlbiBEZXNpZ25lcg=='->Base64ToString
Returns: 'MDriven Designer'
Example
Assuming your Customer.Notes attribute contains a Base64 encoded string
self.Notes->Base64ToString
Returns The original text content of the note
