encoding String (default: "ISO_8859_1")

The encoding mode used to encode the value.

The possible values are:

  • "ISO_8859_1" - supports all characters from the ISO/IEC 8859-1 character set.
  • "UTF_8" - supports all Unicode characters.

Important: The UTF-8 encoding is not included in the specifications and is not supported by all readers.

Example

<div id="qrCode"></div>
<script>
$("#qrCode").kendoQRCode({
  value: "丠",
  encoding: "UTF_8"
});
</script>
In this article