How to display Greek characters

Description

Hi, I am trying to display on the simulator and in the future on the board characters that are not present in UTF-8, such as Greek characters

What MCU/Processor/Board and compiler are you using?

I’m using the simulator with MCUXpresso ide, configured as in the guide

What LVGL version are you using?

8.0.0

What do you want to achieve?

Display Greek characters to my labels

What have you tried so far?

I tried the online converter, while to declare the font I used LV_FONT_DECLARE(my_font_name), but it does not work.

Code to reproduce

void videoGenerale(void) {
lv_obj_t * field = lv_obj_create(lv_scr_act());
lv_obj_set_pos(field, 0, 70);
lv_obj_set_size(field, 480, 100);
lv_obj_t * txt5 = lv_label_create(field);
lv_obj_center(txt5);
lv_label_set_text(txt5,“ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω”);
}