serialization.entities Boolean (default: true)

Indicates whether the characters outside the ASCII range will be encoded as HTML entities. By default, they are encoded.

Example

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
  value: "The character ä is an umlaut",
  serialization: {
    entities: true
  }
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log($("#editor").data("kendoEditor").value()); // logs "The character &auml; is an umlaut"
</script>
In this article