void setup() {
Serial.begin(9600); // Start serial communication
}
void loop() {
delay(1000); // Wait for one second
byte utf8Bytes[] = {0xD8, 0xB3, 0xD9, 0x84, 0xD8, 0xA7, 0xD9, 0x85, 0x20,0xD8, 0xB9, 0xD8, 0xA7, 0xD8, 0xA8, 0xD8, 0xAF}; // UTF-8 byte sequence for the Urdu word "سلام"
String utf8String = String((char*)utf8Bytes); // Convert the byte sequence to a String
Serial.println(utf8String);
}