Hi,
I've tried the the function String.fromCharCode(8226); //Returns "•"
Somehow using the 7 in LiveCycle returns a rectangle with a X inside, so I managed to get the ascii code of "•" with LiveCycle using "•".charCodeAt(0);
"•".charCodeAt(0); // = 8226
String.fromCharCode(8226); // = "•"