WordPress Version: 3.7
/**
* Callback used to change %uXXXX to &#YYY; syntax
*
* @since 2.8.0
* @access private
* @deprecated 3.0.0
*
* @param array $matches Single Match
* @return string An HTML entity
*/
function funky_javascript_callback($matches)
{
return "&#" . base_convert($matches[1], 16, 10) . ";";
}