diff --git a/test/parser/samples/unusual-identifier/input.html b/test/parser/samples/unusual-identifier/input.html
index b7da53a800..71c3f4a12f 100644
--- a/test/parser/samples/unusual-identifier/input.html
+++ b/test/parser/samples/unusual-identifier/input.html
@@ -1,3 +1,3 @@
 {{#each things as 𐊧}}
-	<p>𐊧</p>
+	<p>{{𐊧}}</p>
 {{/each}}
\ No newline at end of file
diff --git a/test/parser/samples/unusual-identifier/output.json b/test/parser/samples/unusual-identifier/output.json
index 72f576c84d..6434526df5 100644
--- a/test/parser/samples/unusual-identifier/output.json
+++ b/test/parser/samples/unusual-identifier/output.json
@@ -1,13 +1,13 @@
 {
-	"hash": 2991613308,
+	"hash": 795130236,
 	"html": {
 		"start": 0,
-		"end": 43,
+		"end": 47,
 		"type": "Fragment",
 		"children": [
 			{
 				"start": 0,
-				"end": 43,
+				"end": 47,
 				"type": "EachBlock",
 				"expression": {
 					"type": "Identifier",
@@ -18,16 +18,21 @@
 				"children": [
 					{
 						"start": 24,
-						"end": 33,
+						"end": 37,
 						"type": "Element",
 						"name": "p",
 						"attributes": [],
 						"children": [
 							{
 								"start": 27,
-								"end": 29,
-								"type": "Text",
-								"data": "𐊧"
+								"end": 33,
+								"type": "MustacheTag",
+								"expression": {
+									"type": "Identifier",
+									"start": 29,
+									"end": 31,
+									"name": "𐊧"
+								}
 							}
 						]
 					}