Does anyone know of pre-existing Library/package/API that would allow me to take an Int ant convert it to UTF-8
public class UTF {
public String toText(int num)
{
String letter;
switch(num){
case 0x41:
letter = "A";
break;
case 0x42:
letter = "B";
break;
case 0x43:
letter = "C";
break;
case 48:
letter = "D";
break;
.....
Ive thought about jut writing it all.. but why re-invent the wheel?