Encode / String Layer
Convert text data into encoded formats. Similar to Python's bytes.hex() or base64.encode(). Useful for:
- Preparing data for API submissions
- Creating secure identifiers
- Standardizing data formats for transfer
- Converting binary data to text representation
Table
0
0
Table
Select
columnThe text column to encode. Can contain any printable text: names, codes, descriptions, or raw data.
Encoding
enumAvailable encoding formats for different requirements
Hex ~ Base64 ~
Convert to hexadecimal format (e.g., Hello -> 48656C6C6F). Common uses:
- Color codes in design (#FF5733)
- Binary data visualization
- Unique identifier generation
- Hash representation
Convert to Base64 format (e.g., Hello -> SGVsbG8=). Common uses:
- Email-safe data transmission
- Image data in web applications
- Secure data exchange
- Embedding binary data in text formats
AsColumn
nameName for the new column. If not provided, the system generates a unique name. If AsColumn
matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.