How can I use unicode \u003c in C++? -


i want use unicode \u003c in c++ this.

const static string strunicode = "\u003c"; 

but got error when compiling.

error: \u003c not valid universal character 

i found unicode character between \u0001 , \u009f lead same compiled error. bug? how can use these unicode character in c++ correctly?


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -