The binary representation for 0.1 is
System.out.println(new BigDecimal(0.1));
prints
0.1000000000000000055511151231257827021181583404541015625
When you print 0.1, you get a small amount of rounding which hides this error.
When you perform a calculation you have to use BigDecimal or round the result or transform the calculation to minimise error.
5 % 0.1
(5 / 0.1 % 1) * 0.1
50 % 1 / 10
In terms of double you can do
double d = 5;
double mod0_1 = d * 10 % 1 / 10;
double rounded = Math.round(mod0_1 * 1e12)/1e12; // round to 12 places.
Note: the result can still have a slight error, but it will be small enough that when you print it, you won't see it.