core :: Char :: code_point
selfassert 'A'.code_point == 65
assert '\n'.code_point == 10
assert '∋'.code_point == 0x220B
	# The unicode code point value of `self`
	#
	#     assert 'A'.code_point == 65
	#     assert '\n'.code_point == 10
	#     assert '∋'.code_point == 0x220B
	fun code_point: Int is intern `{ return (long)self; `}
					lib/core/kernel.nit:965,2--970,55