ebernhardson@elastic2040:~$ cat test.q { "analyzer": "text", "text": "AfrikŠ°" } ebernhardson@elastic2040:~$ curl -H 'Content-Type: application/json' -XPOST http://localhost:9200/afwiki_content/_analyze?pretty -d @test.q { "tokens" : [ { "token" : "afrikŠ°", "start_offset" : 0, "end_offset" : 6, "type" : "", "position" : 0 }, { "token" : "afrika", "start_offset" : 0, "end_offset" : 6, "type" : "", "position" : 0 } ] } ebernhardson@elastic2040:~$