How can I run a N1QL query to return data with unicode notation inside correctly?

I am running this N1QL query from Couchbase Server 6.0.3 :

SELECT “Redacci\u00f3n” where 1

Query Results:
[
{
“$1”: “Redacción”
}
]

How can I run this query to return exact data value ?

[
{
“$1”: “Redacci\u00f3n”
}
]

1 Like