SQLite Forum

Support of unicode operators like ≠?
Login
Hello,

how about this little feature request to expand the parser to also understand the unicode characters below?

≠, not equal to, U+2260 = 8800 or composed with 61 + 824
≤, less-than or equal to, U+2264 = 8804
≥, greater-than or equal to, U+2265 = 8805

While you may not use those characters in source code directly, you could just check for the matching UTF-8 sequences in your parser.

Thanks.