Anyone know ho to use a unicode character in Text ...
# compose
b
Anyone know ho to use a unicode character in Text field? Getting an illegal escape error using this:
Copy code
Text(text = "\u202")
d
That's because
\u202
is invalid unicode. Try pasting in an emoji or something, it should just work
e
Kotlin only accepts 4-digit
\uABCD
unicode escapes. what are you trying to do?