You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please read the docs on how to use non-ASCII characters. The euro sign is U+20AC, which is outside of ASCII range and thus not loaded by default. You need to specify it explicitly.
DearPyGui 2.0.0
Windows 11
Unable to add the unicode character '€'
I add € in my string to show it on UI. But, it shown an ?.
Here is the code to reproduce error :
import dearpygui.dearpygui as dpg
dpg.create_context()
dpg.create_viewport(title="Title")
with dpg.window():
dpg.add_text("€")
dpg.setup_dearpygui()
dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()
Please consider to resolve this issue quickly if is possible.
The text was updated successfully, but these errors were encountered: