<cfscript>

	// Get the multi-character representation of the Emoji CodePoint.
	// --
	// NOTE: 128512 is the CodePoint for "grinning face".
	chars = createObject( "java", "java.lang.Character" )
		.toChars( javaCast( "int", 128512 ) )
	;

	// Collapse the resultant character Array into a single String.
	echo( arrayToList( chars, "" ) );

</cfscript>