Gets or sets a charset used to encode the text data submitted by Image Uploader.
$au.uploader({ uploadSettings: { //...other params... charset: "UTF-8", //...other params... } })Get/Set Value at Runtime
$au.uploader('uploaderID').uploadSettings().charset(value); value = $au.uploader('uploaderID').uploadSettings().charset();
Type: String
The charset. See possible values in the Remarks section.
Default value is "UTF-8".
The table below contains some supported charsets. Visit Sun site for a full list of supported encodings.
Charset | Description |
---|---|
US-ASCII | Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set. |
ISO-8859-1 | ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1. |
UTF-8 | Eight-bit UCS Transformation Format. |
UTF-16BE | Sixteen-bit UCS Transformation Format, big-endian byte order. |
UTF-16LE | Sixteen-bit UCS Transformation Format, little-endian byte order. |
UTF-16 | Sixteen-bit UCS Transformation Format, byte order identified by an optional byte-order mark. |
windows-1250 | Windows East European. |
windows-1251 | Windows Cyrillic. |
windows-1252 | Windows Latin-1. |
windows-1253 | Windows Greek. |
windows-1254 | Windows Turkish. |
windows-1257 | Windows Baltic. |
KOI8-R | KOI-8, Russian. |