GLib.unicode_script_from_iso15924

function unicode_script_from_iso15924(iso15924: Number(guint32)): GLib.UnicodeScript {
    // Gjs wrapper for g_unicode_script_from_iso15924()
}
  

Looks up the Unicode script for iso15924. ISO 15924 assigns four-letter codes to scripts. For example, the code for Arabic is 'Arab'. This function accepts four letter codes encoded as a @guint32 in a big-endian fashion. That is, the code expected for Arabic is 0x41726162 (0x41 is ASCII code for 'A', 0x72 is ASCII code for 'r', etc).

See [Codes for the representation of names of scripts](http://unicode.org/iso15924/codelists.html) for details.

Since 2.30

iso15924

a Unicode script

Returns

the Unicode script for iso15924, or of GLib.UnicodeScript.invalid_code if iso15924 is zero and GLib.UnicodeScript.unknown if iso15924 is unknown.