The Cypher-script "Umlauts.cypher" (UTF-8, created in Windows-environment) contains one transaction for importing an "umlaut-object" containing some umlauts:
:BEGIN
CREATE(:Umlautobj{text:"ÄäÖöÜü"});
:COMMIT
For piping the script (Windows environment) the following code is used in a cmd-shell
TYPE Umlauts.cypher|cypher-shell.bat -u neo4 - p secret
Now, I try a Cypher-Query(Firefox-Browser) to get the text-information from the new node:
MATCH (n:Umlautobj) RETURN n.text
I get:
"ÄäÖöÜü"
But I expected to get:
"ÄäÖöÜü"
How can I import umlauts correctly?
[Windows 10, neo4j-community 3.5.15, neo4j-DB on the same machine]