Having trouble with character types...
protected void Page_Load(object sender, EventArgs e)
{
char test = '\ue900'; //This makes test = 59648'.'
}
However, this doesn't work:
protected void Page_Load(object sender, EventArgs e)
{
char test = '\f000';
//This won't compile because squiggly on test says "Too many characters in literal"
//However, this works when I put the value in CSS content attribute.
}
How do I make the latter fit into the test variable? I think in the first example, it's a unicode value and in the second it's not?