Laura Norris wrote:
> so, i have a list of 4 character unicodes and i need to convert them to the
> human readable equivalent to save them to the database.  any ideas on
> functions to use?

no, these aren't "4 character unicodes", they're hexadecimal codepoints. first 
convert them to decimal:

dec=InputBaseN("00C1", 16);

then convert the decimal codepoint to a "char":

char=chr(dec);

which should get you something like:

Á

btw is the database unicode capable & ready?

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324497
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to