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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -