Try Iterating over all of the elements in the webpage. When you find one with the value you want, you could click that element.
foreach (HtmlElement el in webBrowser1.Document.GetElementsByTagName("input")
{
if (el.GetAttribute("value").Equals("→"))
{
el.InvokeMember("click");
}
}