The character which code point (unicode-wise) is self

assert 65u32.code_point == 'A'
assert 10u32.code_point == '\n'
assert 0x220Bu32.code_point == '∋'

Property definitions

core :: native $ UInt32 :: code_point
	# The character which code point (unicode-wise) is `self`
	#
	#     assert 65u32.code_point == 'A'
	#     assert 10u32.code_point == '\n'
	#     assert 0x220Bu32.code_point == '∋'
	fun code_point: Char `{ return self; `}
lib/core/text/native.nit:85,2--90,40