Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在组合框中添加一个除号作为项目。这是小学数学的正式除法符号(连字符上方和下方都有一个点的符号)。在 unicode 中,此符号的代码是“00f7”。
我试过这段代码:
myComboBox.addItem("\00f7");
但它没有用。我刚得到一个盒子,后面跟着'f7'。我知道这段代码适用于添加字符串,所以一定是我没有正确处理 unicode 部分。
谁能告诉我要改什么?谢谢!
尝试
myComboBox.addItem("\u00f7");
Unicode 以“\u”开头