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