How do I write an inline "\0x" without having LaTeX put each value on a new line?
"\0x" in C programing identifies a hexadecimal value. I would like to write an inline string of hexadecimal represented values.
Consider this as what I want to write
\0x68 \0x6F \0x77 \0x20 \0x64 \0x6F \0x3F
I tried
\\0x68 \\0x6F \\0x77 \\0x20 \\0x64 \\0x6F \\0x3F
but every hexadecimal value is placed on a newline, and missing the backslash.
I also tried
\texttt{\0x68\0x6F\0x77\0x20\0x64\0x6F\0x3F}
but the same thing happens.



\verb|\0x68|or\textbackslash 0x68for example – David Carlisle Nov 25 '23 at 21:40\parand when\\– barbara beeton Nov 25 '23 at 21:54