In Oracle/PLSQL, the hextoraw function converts a hexadecimal value into a raw value.
Syntax
The syntax for the hextoraw function is:
hextoraw( char )
char is the hexademical value to convert to a raw value.
Applies To
- Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
For Example
hextoraw('45D') | would return '045D' as a raw value |
hextoraw('7E') | would return '7E' as a raw value |