Trinthlo

Converting Hex Values to String Values

<cffunction name="hexToString" access="public" output="false" returntype="string">
    <cfargument name="hexValue" type="string" required="false" default="" />
    <cfscript>
        var binaryValue = binaryDecode(hexValue, "hex");
        var stringValue = toString(binaryValue);
    </cfscript>
    <cfreturn lCase(stringValue) />
</cffunction>