WordPress Version: 6.2
/**
* Helper function to convert hex encoded chars to ASCII.
*
* @since 3.1.0
* @access private
*
* @param array $matches The preg_replace_callback matches array.
* @return string Converted chars.
*/
function _wp_iso_convert($matches)
{
return chr(hexdec(strtolower($matches[1])));
}