valid_unicode() WordPress Function

The valid_unicode() function is a built-in Wordpress function that is used to validate a string of unicode characters. This function is useful for ensuring that a string of text is properly formatted and contains only valid unicode characters.

valid_unicode( int $i ) #

Determines if a Unicode codepoint is valid.


Parameters

$i

(int)(Required)Unicode codepoint.


Top ↑

Return

(bool) Whether or not the codepoint is a valid Unicode codepoint.


Top ↑

Source

File: wp-includes/kses.php

function valid_unicode( $i ) {
	return ( 0x9 == $i || 0xa == $i || 0xd == $i ||
			( 0x20 <= $i && $i <= 0xd7ff ) ||
			( 0xe000 <= $i && $i <= 0xfffd ) ||
			( 0x10000 <= $i && $i <= 0x10ffff ) );
}

Top ↑

Changelog

Changelog
VersionDescription
2.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.