Since you are running Mac OS, you can be sure that the terminal uses UTF-8. Therefore, raise the character palette (Edit β Special characters ...), find the microsecond character there and put it directly in your line.
int main() { printf("Β΅s\n"); }
It will work as long as your source file is also UTF-8. Otherwise, you will need to find a code point for it (which should also be indicated in the character palette). Hover over a character to find its UTF-8 value (and excuse my French system): 
This means that you can use printf("\xc2\xb5") as an encoding-independent replacement for the character itself.
zneak source share