RosettaCodeData/Task/Terminal-control-Unicode-output/Wren/terminal-control-unicode-output.wren
2025-02-27 18:35:13 -05:00

7 lines
213 B
Text

import "os" for Terminal
if (Terminal.supportsUnicode) {
System.print("Unicode is supported on this terminal and U+25B3 is : \u25b3")
} else {
System.print("Unicode is not supported on this terminal.")
}