import QtQuick 2.11 import QtQuick.Window 2.11 import QtQuick.Controls 2.4 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Grid { columns: 5 Label { text: "\x79" } Label { text: "\x80" } Label { text: "\x81" } Label { text: "\x82" } Label { text: "\x83" } Label { text: "\x84" } Label { text: "\x85" } Label { text: "\x86" } Label { text: "\x87" } Label { text: "\x88" } Label { text: "\x89" } Label { text: "\x8A" } Label { text: "\x8B" } Label { text: "\x8C" } Label { text: "\x8D" } Label { text: "\x8E" } Label { text: "\x8F" } Label { text: "\x90" } Label { text: "\x91" } Label { text: "\x92" } Label { text: "\x93" } Label { text: "\x94" } Label { text: "\x95" } Label { text: "\x96" } Label { text: "\x97" } Label { text: "\x98" } } }