Skip to content
New issue

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

allow inserting unicode chars via escaping #3288

Closed
3 tasks
pbiggar opened this issue Nov 29, 2021 · 1 comment
Closed
3 tasks

allow inserting unicode chars via escaping #3288

pbiggar opened this issue Nov 29, 2021 · 1 comment

Comments

@pbiggar
Copy link
Member

pbiggar commented Nov 29, 2021

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:

@StachuDotNet
Copy link
Member

folded into #5243

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants