C:\java>jshell
| Welcome to JShell -- Version 18
| For an introduction type: /help intro
jshell> Double.toString(2e23)
$1 ==> "1.9999999999999998E23"
jshell> Double.toString(1e-323)
$2 ==> "1.0E-323"
jshell> Double.toString(8.41E21)
$4 ==> "8.409999999999999E21"