Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 358 Bytes

File metadata and controls

20 lines (14 loc) · 358 Bytes
description
Returns whether an expression is valid UTF-8.

IS_UTF8

Syntax

IS_UTF8(in any) → boolean

  • in: an expression

Examples

{% code title="IS_UTF8 example" %}

SELECT is_utf8('hello')
-- True

{% endcode %}