keith-turner commented on issue #88:
URL: https://github.com/apache/accumulo-access/issues/88#issuecomment-3643167338
> How would we differentiate a period . from the unicode replacement
character .?
Its a different unicode code pint. I can not find anything in the java API
that will tell me what code point its going to use. What hoping there was
something like `StandardCharsets.UTF_8.replacementChar()` but do not see
anything like that.
```
jshell> new String(new byte[]{'.',(byte)0xff}, "UTF8").codePointAt(1)
$16 ==> 65533
jshell> new String(new byte[]{'.',(byte)0xff}, "UTF8").codePointAt(0)
$17 ==> 46
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]