In my HTML/JavaScript app project, I am looking to incorporate a 'refresh' symbol without having to load an image through HTTP requests. Are there reliable methods that can achieve this across all major browsers?
I came across the Unicode value: ↺ (↺
), but it seems to be pointing in the wrong direction. Are there alternative Unicode values that could work?
Are there any Webdings fonts that might be effective? (Note that they often do not function correctly in Opera and Firefox.)
Additionally, is there a way to generate an image in JavaScript using a base64 image source provided by a String within the JS code itself?
EDIT:
The purpose for avoiding external resources is not due to concerns about overhead. The app must exist as a standalone JavaScript file, free from any dependencies. It is intended as a development tool that can be easily added to any project regardless of network access.