## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> TO_BINARY[TO_BINARY]:::quoted TO_BINARY --> End((END)) ``` ## Purpose The `TO_BINARY` SQL function converts a value into a BLOB. Text is interpreted as UTF-8. Parameters: - Input: value to convert. Returns: the input converted to a BLOB.