DisplayName with special characters in it

Hey, we’re using displayName in USD, and it turns out that even inside displayName there are limitations as to what characters can be used.

Does someone know how to properly escape for example a " inside displayName?

Usecase where I ran into the issue: <Iiyama 32" Touchscreen>

def Xform "Iiyama_32_touchscreen_25" (
	prepend references = @./geometries/Geometry_10.usda@</Geometry>
	prepend apiSchemas = ["MaterialBindingAPI"]
	displayName = "Iiyama_32"_touchscreen"
)
{
	rel material:binding = </StageRoot/Materials/Lit_7>
	
}

Seems that it can be escaped with \ –

"Iiyama_32\"_touchscreen"

and there’s a bug in AL’s VS Code extension that makes that look incorrect: