_wp_kses_decode_entities_chr()WP 2.9.0

Regex callback for wp_kses_decode_entities().

Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.

No Hooks.

Return

String.

Usage

_wp_kses_decode_entities_chr( $matches );
$matches(array) (required)
preg match

Changelog

Since 2.9.0 Introduced.

_wp_kses_decode_entities_chr() code WP 6.5.2

function _wp_kses_decode_entities_chr( $matches ) {
	return chr( $matches[1] );
}