<cfif structKeyExists(form,"asian_string")>
<cfset strLen = len(form['asian_string'])>
<cfset hex = arrayNew(1)>
<cfloop from="1" to="#strLen#" index="i">
<cfset current_char = mid(form['asian_string'],i,1)>
<cfset
arrayAppend(hex,formatBaseN(asc(current_char),16))>
</cfloop>
<cfdump var="#hex#">
</cfif>
<form action="" method="post">
<input type="text" name="asian_string" />
<input type="submit" />
</form>