问题 I need a way to transform numeric HTML entities into their plain-text character equivalent. For example, I would like to turn the entity: é into the character: é Through some googling around I found a function called HtmlUnEditFormat, but this function only transforms named entities. Is there a way to decode numeric entities in ColdFusion? 回答1: Updated Answer: Thanks to Todd Sharp for pointing out a very simple way to do this, using the Apache Commons StringEscapeUtils library, which is