Skip to content

raylib.LoadCodepoints

JoeStrout edited this page Apr 29, 2026 · 3 revisions

Load all codepoints from a UTF-8 text string, codepoints count returned by parameter

Parameters

Parameter Default Value Note
text

Return value

Condition Return Value
(always) list

Notes

Example

// Load all codepoints from a string then unload them
codepoints = raylib.LoadCodepoints("Hello!")
print codepoints  // [72, 101, 108, 108, 111, 33]
raylib.UnloadCodepoints codepoints

Clone this wiki locally