I'm trying to output Unicode that corresponds to an integer value entered by the user. This is being done on windows 10 in C++ by the way. Currently I can print Unicode with this code:
_setmode(_fileno(stdout), _O_U16TEXT);
wprintf(L"\u0006");'''
My question is, how do I attach the variable to the Unicode?