We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Followup to #2565.
We should support unicode characters using the escape sequences. F# supports the following:
Unicode character | \DDD (where D indicates a decimal digit; range of 000 - 255; for example, \231 = "ç")
Unicode character | \xHH (where H indicates a hexadecimal digit; range of 00 - FF; for example, \xE7 = "ç")
Unicode character | \uHHHH (UTF-16) (where H indicates a hexadecimal digit; range of 0000 - FFFF; for example, \u00E7 = "ç")
Unicode character | \U00HHHHHH (UTF-32) (where H indicates a hexadecimal digit; range of 000000 - 10FFFF; for example, \U0001F47D = "👽")
Steps:
The text was updated successfully, but these errors were encountered:
folded into #5243
Sorry, something went wrong.
No branches or pull requests
Followup to #2565.
We should support unicode characters using the escape sequences. F# supports the following:
Steps:
The text was updated successfully, but these errors were encountered: