I am trying to find out if a string contains a degree symbol (ascii 176) using something like match (n:NodeName) where n.Field contains degree symbol. I cannot find anything relevant in my searches to show how to refer to the degree symbol. Thanks very much.
Hello. You can reference unicode characters as "\uxxxx" in Cypher. xxxx should be hexadecimal, so 176 is referred as B0, i.e. "\u00B0". So your Cypher query would be:
MATCH (n:NodeName)
WHERE n.Field CONTAINS "\u00B0"
RETURN n
More to be found here: