String.Split("¦"[0]) is not finding character

I know it is the “¦” character because I did a search and replace on it with the “|” character in my test file and the Split() worked. Unfortunately I am using a live data feed and cannot replace the character in the feed.

Anyone know how to check for the “¦” character?

You check for it as normal…this works fine:

function Start () {
	  var str = "abc¦def¦ghi";
	  var strs = str.Split("¦"[0]);
	  for (s in strs) Debug.Log (s);
}