Cでは、次のようなことができます:
short number = 20693; // Create the number
unsigned char* str = malloc(3); // Create the string
memcpy(str, &number, 2); // Copy the number to the string
str[2] = 0; // 0-pad it
そしてstr
、 の utf-8 表現が含まれますnumber
。これをJavaScriptで(0パディングなしで)行うことは可能ですか?