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

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

Property definitions

core $ Int :: code_point
	# The character which code point (unicode-wise) is `self`
	#
	#     assert 65.code_point == 'A'
	#     assert 10.code_point == '\n'
	#     assert 0x220B.code_point == '∋'
	fun code_point: Char is intern `{ return (uint32_t)self; `}
lib/core/kernel.nit:803,2--808,60