Displaying 1 result from an estimated 1 matches for "ub124".
Did you mean:
ub12p
2015 Sep 22
1
Differences in printing UTF-8 strings to stdout vs. stderr under Windows
It seems that under Windows, some UTF-8 strings that print OK to
stdout do not print correctly to stderr. To reproduce:
x <- "\ub124"
cat(x, file = stdout())
## ?
cat(x, file = stderr())
## <U+B124>
Original motivating problem here:
https://stackoverflow.com/questions/32696241/how-to-display-a-message-warning-error-with-unicode-characters-under-windows
How does printing to stderr differ from printing to stdout?
And...