Converts a string to a binary representation.
charsetDecode(string, encoding)
→ returns binary
utf-8
iso-8859-1
windows-1252
us-ascii
shift_jis
iso-2022-jp
euc-jp
euc-kr
big5
euc-cn
utf-16
Use charsetDecode to decode with utf-8
charsetDecode('string','utf-8');
Expected Result: [BINARY]
Use charsetDecode to decode with us-ascii
charsetDecode('string','us-ascii');
Expected Result: [BINARY]
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.