Bug report : Impossible to show € correctly
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.
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.
Thank you so much for your quick answer. I will verify later.
Please don't click the link in the notification you received for the previous comment. It's a scam.