I would like to show a small italic i (math symbol) in Kotlin using Android Studio. I see it has a value in Unicode-32, but that is not the character set that is the base for Kotlin in Android. Based on what I can determine, the base unicode is UTF-16 (hex), since that is what I used to define the other unicode characters I use. See https://unicode-table.com/en/.
For example, I use \u221A for the square root sign. However, there is apparently no small italic i in the same character set. Is there a way to generate the small italic i using Unicode 32 without having to redefine all the other unicode characters I use? Thanks in advance for your help.