I use FXRuby gem for writing Ruby GUI, but I can’t configure the encoding for Cyrillic recognition, I know that this is done through the font setting, but all this is not displayed
app = FXApp.new ffont = FXFont.new(app,"helvetica,110,unicode") main = FXMainWindow.new(app,"Memory", :width=>1200, :height=>200 ) ftext = FXLabel.new(main,"") ftext.font = ffont ftext.text = [@Memories[0].getEvent,' ',@Memories[0].getDay,' ',@Memories[0].getMonth,' ',@Memories[0].getName].to_s app.create main.show(PLACEMENT_SCREEN) app.run 
ftext.text = [@Memories[0].getEvent, @Memories[0].getDay, @Memories[0].getMonth, @Memories[0].getName].join(" ")` - Nakilon