How To add multiplication and division symbol from bitmap in javascript? -
i cant figure out how add these symbols.. in .font bitmap file says code 0xf7 division , 0xd7 multiplication sign..
you mean, how use unicode symbols? use unicode escape sequence: \uxxxx
var my_string = "this divide symbol: \u00f7 , " + "this multiply symbol: \u00d7";
Comments
Post a Comment