Definition:
The UNISTR function converts a string to the national character set (either UTF8 or UTF16). For portability and data preservation, you should specify only ASCII characters and the Unicode encoding values UNISTR() string argument.
Example Syntax:
UNISTR(ch VARCHAR2 CHARACTER SET ANY_CS) RETURN NVARCHAR2;
Example Usage:
SELECT UNISTR(ASCIISTR(CHR(128) || 'Hello' || CHR(255)))
FROM DUAL;
Related Links:
Related Code Snippets:
- UNISTR - Takes a text literal (or an expression that resolves to character data) and returns it in...
