Display TM symbol in enum on GUI

Hi! I’m working on a tool in Unity and I have an editor window with an enum popup on it. I want one of the things in the enum to display as This Thing(TM Symbol) Stuff .Is there anyway I can get the tm symbol? Thanks, any help is much appreciated.

Unity generally uses UTF-8, if I recall correctly, so can’t you just add that character to the name of the enum? I’ve never actually tried that.

If not, you’ll need to write a custom editor class that can manually add the character in to the selected option.