Format number in Input

Is it possible to display the number in the range slider with a dot as thousand separator: Carbon Footprint / RND | Observable

viewof income = Inputs.range([0, 300000 * adults], {
label: htmlBruttoeinkommen des Haushalts pro Jahr in Euro:,
step: 100,
format: (x) => x.toLocaleString(“de”),
value: adults == 1 ? 31000 : 31000 * 2
})

No, the number input is a native element controlled by the browser. The browser will usually format the number according to your system’s language settings.